README: Add apt dependencies for pypi cryptography.

The cryptography library requires gcc and some development headers
that aren't installed by default on Ubuntu.

Source:
https://cryptography.io/en/latest/installation/#building-cryptography-on-linux
This commit is contained in:
Kevin Chen 2016-12-13 01:26:02 -05:00
parent 759807a3b6
commit 4d1c048b8f

View file

@ -30,7 +30,7 @@ The easiest way to get an Algo server running is to let it setup a _new_ virtual
1. Install the dependencies for your operating system:
OS X: `sudo easy_install pip && sudo pip install -r requirements.txt`
Linux (deb-based): `sudo easy_install pip && sudo apt-get install libssl-dev && sudo pip install -r requirements.txt`
Linux (deb-based): `sudo easy_install pip && sudo apt-get install build-essential libssl-dev libffi-dev python-dev && sudo pip install -r requirements.txt`
2. Open the file `config.cfg` in your favorite text editor. Specify the users you wish to create in the `users` list.
3. Start the deploy and follow the instructions: `./algo`