python 生成requirements 文件
- python 要生成 requirements文件 有两种情况
- 具有独立的虚拟环境
- 全局环境
具有独立的虚拟环境
pip freeze > requirements.txt
全局环境
- 安装
pip install pipreqs
- 在当前目录生成
pipreqs . --encoding=utf8 --force
本文来自博客园,作者:ZapcoMan,转载请注明原文链接:https://www.cnblogs.com/ZapcoMan/p/18455032