From f22294b83ec1a091c694693188091ce8360b4084 Mon Sep 17 00:00:00 2001 From: Utkan Gezer Date: Wed, 14 Mar 2018 16:47:39 +0300 Subject: [PATCH] Multi-line virtualenv setup script Changed the single-line virtualenv setup script into multi-line one. Should be equivalent to what it was before, and now viewable/copy-able without scrolling. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a740731f..63a7f7b9 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,10 @@ The easiest way to get an Algo server running is to let it set up a _new_ virtua 4. **Install Algo's remaining dependencies.** Use the same Terminal window as the previous step and run: ```bash - $ python -m virtualenv --python=`which python2` env && source env/bin/activate && python -m pip install -U pip && python -m pip install -r requirements.txt + $ python -m virtualenv --python=`which python2` 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`. You should press accept if so.