aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBonfaceKilz2021-03-17 11:42:06 +0300
committerBonfaceKilz2021-03-17 11:42:06 +0300
commitbeb167e72c571a4080de6e571a7a20bda0976868 (patch)
tree8d54ab90826766782eb6d1f5ebdf2e9d24d2b6c3 /README.md
parent56ce88ad31dec3cece63e9370ca4e4c02139753b (diff)
downloadgenenetwork3-beb167e72c571a4080de6e571a7a20bda0976868.tar.gz
README: Add note on how to force install things in venv
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md
index 0a24153..67ae5af 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,10 @@ virtualenv --python python3 venv
3. Install the required packages
```bash
-pip install -r requirements.txt
+# The --ignore-installed flag forces packages to
+# get installed in the venv even if they existed
+# in the global env
+pip install -r requirements.txt --ignore-installed
```
#### Using guix