https://www.jb51.net/article/170248.htm
第一种 适用于 单虚拟环境的情况: :
1 |
|
为什么只适用于单虚拟环境?因为这种方式,会将环境中的依赖包全都加入,如果使用的全局环境,则下载的所有包都会在里面
所以不建议。
第二种 (推荐) 使用 pipreqs
,github地址为: https://github.com/bndr/pipreqs
1 2 3 4 |
|
注意 --encoding=utf8
为使用utf8编码,不然可能会报UnicodeDecodeError: 'gbk' codec can't decode byte 0xae in position 406: illegal multibyte sequence 的错误。
--force
强制执行,当 生成目录下的requirements.txt存在时覆盖