mirror of
https://github.com/trailofbits/algo.git
synced 2025-06-05 22:54:01 +02:00
Multi-line virtualenv setup script (#829)
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.
This commit is contained in:
parent
ac8b092ca5
commit
32cbec6f5b
1 changed files with 4 additions and 1 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue