lxq.link
postscategoriestoolsabout

Pip Requirements Files

ON THIS PAGE

Generate python package list

pip freeze >requirements.txt

The generated file looks like below

asn1crypto==0.24.0
certifi==2018.8.24
cffi==1.11.5
chardet==3.0.4
conda==4.5.11
cryptography==2.3.1

Install package by requirements.txt

pip install -r requirements.txt
2018-11-05