安装pipreqs
pip install pipreqs
执行
pipreqs --use-local
报错:UnicodeDecodeError: 'gbk' codec can't decode byte 0xbf in position 2: illegal multibyte sequence
需要上--encoding=utf8 如下
pipreqs --use-local --encoding=utf8 --force .
python 自动生成当前项目的requirements文件
有几种办法:
1、使用pip freeze
pip freeze > requirements.txt
这种方式是把整个环境中的包都列出来了,如果是虚拟环境可以使用。
通常情况下我们只需要导出当前项目的requirements.txt,这时候就推荐pipreqs了
2、使用 pipreqs
可以通过对项目目录的扫描,自动发现使用了那些类库,把项目相关的依赖到requirements.txt自动生成依赖清单,