Dup Goto 📝

PipRequirements

PT2/aw/lang/python 07-31 13:46:41
To Pop
14 lines, 40 words, 284 chars Monday 2023-07-31 13:46:41
$ python -m pip freeze
ansicolors==1.1.8
certifi==2022.12.7
...

dump this into a file called e.g. requirements.txt

$ python -m pip install -r requirements.txt

this automates running

$ python -m pip install ansicolors==1.1.8 certifi==2022.12.7 ...