Dup Ver Goto 📝

PipRequirements

PT2/lang/python/old-notes does not exist
To
14 lines, 40 words, 284 chars Page 'PipRequirements' does not exist.
$ 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 ...