From 29f7b78deb100c682ee80b0bb1c6ae62c79b15bc Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Mon, 3 Mar 2014 15:20:09 +0000 Subject: [PATCH] Add installation instructions for binaries --- docs/install.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/docs/install.md b/docs/install.md index 35dc3767e..a2d8ba4c0 100644 --- a/docs/install.md +++ b/docs/install.md @@ -14,10 +14,18 @@ First, install Docker. If you're on OS X, you can use [docker-osx](https://githu Docker has guides for [Ubuntu](http://docs.docker.io/en/latest/installation/ubuntulinux/) and [other platforms](http://docs.docker.io/en/latest/installation/) in their documentation. -Next, install Fig: +Next, install Fig. On OS X: + + $ curl -L https://github.com/orchardup/fig/releases/download/0.3.0/darwin > /usr/local/bin/fig + $ chmod +x /usr/local/bin/fig + +On 64-bit Linux: + + $ curl -L https://github.com/orchardup/fig/releases/download/0.3.0/linux > /usr/local/bin/fig + $ chmod +x /usr/local/bin/fig + +Fig is also available as a Python package if you're on another platform (or if you prefer that sort of thing): $ sudo pip install -U fig -(This command also upgrades Fig when we release a new version. If you don’t have pip installed, try `brew install python` or `apt-get install python-pip`.) - That should be all you need! Run `fig --version` to see if it worked.