2014-01-27 16:03:21 +01:00
---
layout: default
title: Installing Fig
---
Installing Fig
==============
2014-07-21 20:30:15 +02:00
First, install Docker version 1.0 or greater. If you're on OS X, you can use [docker-osx ](https://github.com/noplay/docker-osx ):
2014-01-27 16:03:21 +01:00
2014-07-21 20:30:15 +02:00
$ curl https://raw.githubusercontent.com/noplay/docker-osx/1.1.1/docker-osx > /usr/local/bin/docker-osx
2014-01-27 16:03:21 +01:00
$ chmod +x /usr/local/bin/docker-osx
$ docker-osx shell
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.
2014-03-03 16:20:09 +01:00
Next, install Fig. On OS X:
2014-01-27 16:03:21 +01:00
2014-07-28 20:03:12 +02:00
$ curl -L https://github.com/orchardup/fig/releases/download/0.5.2/darwin > /usr/local/bin/fig
2014-03-03 16:20:09 +01:00
$ chmod +x /usr/local/bin/fig
On 64-bit Linux:
2014-07-28 20:03:12 +02:00
$ curl -L https://github.com/orchardup/fig/releases/download/0.5.2/linux > /usr/local/bin/fig
2014-03-03 16:20:09 +01:00
$ chmod +x /usr/local/bin/fig
2014-01-27 16:03:21 +01:00
2014-03-03 16:20:09 +01:00
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
2014-01-27 16:03:21 +01:00
That should be all you need! Run `fig --version` to see if it worked.