pip生成 Python项目依赖包requirements.txt

前言:python项目需要安装依赖包,我们一键生成requirements.txt 方便测试部署


第一步:cmd命令 打开Python项目的目录

生成:      pip freeze > requirements.txt

导入: pip install -r requirements.txt

二步:项目里面多了一文件requirements.txt 完成。


后语:记录分享知识,让跟多同道中人少走弯路。

你可能感兴趣的:(pip生成 Python项目依赖包requirements.txt)