From 4d1c048b8f664f52ff349d6489b3938876b0a633 Mon Sep 17 00:00:00 2001 From: Kevin Chen Date: Tue, 13 Dec 2016 01:26:02 -0500 Subject: [PATCH] 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 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b596567..8164cf8 100644 --- a/README.md +++ b/README.md @@ -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`