diff options
author | BonfaceKilz | 2021-03-17 16:30:35 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-03-17 16:30:35 +0300 |
commit | ff219084f8a40bac4b3dc65aef5b832c852e0c25 (patch) | |
tree | 8360821d5fd5d693750fc9c5a666e3ad07399c3a | |
parent | 62e9ec787e994333d3c2579cf2c23f1603719b47 (diff) | |
download | genenetwork3-ff219084f8a40bac4b3dc65aef5b832c852e0c25.tar.gz |
README: Update instructions on how to freeze packages
-rw-r--r-- | README.md | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 + ``` |