aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBonfaceKilz2021-03-17 16:30:35 +0300
committerBonfaceKilz2021-03-17 16:30:35 +0300
commitff219084f8a40bac4b3dc65aef5b832c852e0c25 (patch)
tree8360821d5fd5d693750fc9c5a666e3ad07399c3a /README.md
parent62e9ec787e994333d3c2579cf2c23f1603719b47 (diff)
downloadgenenetwork3-ff219084f8a40bac4b3dc65aef5b832c852e0c25.tar.gz
README: Update instructions on how to freeze packages
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index 6652a11..b18fdf1 100644
--- a/README.md
+++ b/README.md
@@ -69,7 +69,8 @@ Make sure that the dependencies in the `requirements.txt` file match those in
guix. To freeze dependencies:
```bash
-# The -l flag ensures you don't include
-# python packages installed globally.
-pip freeze -l > requirements.txt
+# Consistent way to ensure you don't capture globally
+# installed packages
+pip freeze --path venv/lib/python3.8/site-packages > requirements.txt
+
```