python pip get all installed third package

Freeze PIP> requirements.txt # generate a txt file

pip install -r requirements.txt you can install all the packages directly when others use #

 

[program:myweb]
command=/usr/local/python3/bin/gunicorn -w 4 -b 127.0.0.1:5000 bin:app
directory=/usr/local/test
startsecs=0
stopwaitsecs=0
autostart=true
autorestart=false
user=root
stdout_logfile=gunicorn.log
stderr_logfile=gunicorn.err

Guess you like

Origin www.cnblogs.com/yaoqingzhuan/p/11285994.html