From bdd0b854316331da66668601b84153a645b7933f Mon Sep 17 00:00:00 2001 From: Jack Ivanov Date: Sun, 16 Apr 2017 16:40:10 +0200 Subject: [PATCH] Upgrade pip inside virtualenv. Fixes #409 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 84d23de..812c809 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ The easiest way to get an Algo server running is to let it set up a _new_ virtua 4. Install Algo's remaining dependencies for your operating system. Using the same terminal window as the previous step run the command below. ```bash - $ python -m virtualenv env && source env/bin/activate && python -m pip install -r requirements.txt + $ python -m virtualenv env && source env/bin/activate && python -m pip install -U pip && python -m pip install -r requirements.txt ``` On macOS, you may be prompted to install `cc` which you should accept.