diff options
author | BonfaceKilz | 2021-03-17 11:42:06 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-03-17 11:42:06 +0300 |
commit | beb167e72c571a4080de6e571a7a20bda0976868 (patch) | |
tree | 8d54ab90826766782eb6d1f5ebdf2e9d24d2b6c3 /README.md | |
parent | 56ce88ad31dec3cece63e9370ca4e4c02139753b (diff) | |
download | genenetwork3-beb167e72c571a4080de6e571a7a20bda0976868.tar.gz |
README: Add note on how to force install things in venv
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |