使用Python生成项目的requirements.txt文件
程序员文章站
2022-03-19 09:04:22
...
pip freeze
它生成的 requirements.txt 文件包含当前环境的完全列表,不相关的依赖包也会包含进来。
pipreqs
pip install pipreqs
pipreqs --force <project-path>
只会包含项目 imports 的包,包含列表不是很完全
pigar
pip install pigar
输出信息比 pipgreqs 详细
pigar -c requirements.txt
以上就是使用Python生成项目的requirements.txt文件的详细内容,更多请关注其它相关文章!
推荐阅读
-
Python使用cx_Freeze库生成msi格式安装文件的方法
-
python3使用scrapy生成csv文件代码示例
-
Python依赖文件requirements.txt的生成和安装
-
Python中使用dom模块生成XML文件示例
-
python 自动生成当前项目的requirements文件
-
python笔记---需求文件requirements.txt的创建及使用
-
python笔记---需求文件requirements.txt的创建及使用
-
python——需求文件requirements.txt的创建及使用
-
python笔记---需求文件requirements.txt的创建及使用
-
Python使用cx_Freeze库生成msi格式安装文件的方法