From 8c6400e4d68f673ba7970adadcad39c455fbcd4a Mon Sep 17 00:00:00 2001 From: ZeroNet Date: Tue, 6 Aug 2019 14:56:45 +0200 Subject: [PATCH] Correct venv install --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4b981863..2e2f6857 100644 --- a/README.md +++ b/README.md @@ -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: