Correct venv install

This commit is contained in:
ZeroNet 2019-08-06 14:56:45 +02:00 committed by GitHub
parent b6e1559a80
commit 8c6400e4d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -80,9 +80,9 @@ Install Python module dependencies either:
* (Option A) into a [virtual env](https://virtualenv.readthedocs.org/en/latest/)
```
virtualenv zeronet
python3 -m venv zeronet
source zeronet/bin/activate
python -m pip install -r requirements.txt
python3 -m pip install -r requirements.txt
```
* (Option B) into the system (requires root), for example, on Debian/Ubuntu: