python pip获取所有已安装的第三包

pip freeze > requirements.txt # 生成txt 文件

pip install -r requirements.txt # 别人使用时可以直接安装所有的包

[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

猜你喜欢

转载自www.cnblogs.com/yaoqingzhuan/p/11285994.html