Update README

This commit is contained in:
Jack Ivanov 2019-08-22 20:33:27 +02:00
parent 5485d486ba
commit 3225cf34c4
2 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View file

@ -3,7 +3,7 @@
configs/*
inventory_users
*.kate-swp
env
*env
.DS_Store
venvs/*
!venvs/.gitinit

View file

@ -56,8 +56,8 @@ The easiest way to get an Algo server running is to run it on your local machine
4. **Install Algo's remaining dependencies.** Use the same Terminal window as the previous step and run:
```bash
$ python3 -m virtualenv --python="$(command -v python3)" env &&
source env/bin/activate &&
$ python3 -m virtualenv --python="$(command -v python3)" .env &&
source .env/bin/activate &&
python3 -m pip install -U pip virtualenv &&
python3 -m pip install -r requirements.txt
```