An apple a day keeps the doctor away !

0%

Python便捷生成requirements.txt

使用 pipreqs ,github地址为: https://github.com/bndr/pipreqs

安装

1
pip install pipreqs

在当前目录生成

1
pipreqs . --encoding=utf8 --force

注意 --encoding=utf8 为使用utf8编码,不然可能会报UnicodeDecodeError: 'gbk' codec can't decode byte 0xae in position 406: illegal multibyte sequence 的错误。

--force 强制执行,当 生成目录下的requirements.txt存在时覆盖。