python 生成requirements.txt的方法

python 生成requirements.txt的方法

方法一

requirements.txt能夠經過pip命令自動生成和安裝,這種狀況更適用於此項目是單獨的虛擬python環境
生成requirements.txt文件

pip freeze > requirements.txt
安裝requirements.txt依賴

pip install -r requirements.txt

方法二

# 使用pipreqs模塊
pip install pipreqs
用法

pipreqs /home/project/location --encoding=utf8
相關文章
相關標籤/搜索