方法1
$ pip freeze > requirements.txt
- 1
会生成所有项目所需的依赖,太多!简直不能忍。
方法2
$ pip install pipreqs
$ pipreqs /path/to/project
- 1
- 2
只生成指定目录下的文件列表。
参考文献:
1、https://blog.csdn.net/orangleliu/article/details/60958525 2018.5.24
2、https://blog.csdn.net/caiqiiqi/article/details/78715426 2018.5.24
3、http://chamhaw.leanote.com/post/requirements_file.md 2018.5.24