1. 程式人生 > >為基於匯入的任何專案生成requirements.txt檔案---pipreqs

為基於匯入的任何專案生成requirements.txt檔案---pipreqs

1.安裝 pipreqs

pip install pipreqs

如需檢視詳細資訊:https://github.com/bndr/pipreqs

2.用法:

用法:
    pipreqs [options] <path>

選項:
    --use-local僅使用本地包資訊而不是查詢PyPI
    --pypi-server <url>使用自定義PyPi伺服器
    --proxy <url>使用Proxy,引數將傳遞給請求庫。你也可以設定
                          終端中的環境引數:
                          $ export HTTP_PROXY =“http://10.10.1.10:3128”
                          $ export HTTPS_PROXY =“https://10.10.1.10:1080”
    --debug列印除錯資訊
    --ignore <dirs> ...忽略額外的目錄
    --encoding <charset>使用編碼引數開啟檔案
    --savepath <file>儲存給定檔案中的需求列表
    --print輸出標準輸出中的需求列表
    --force覆蓋現有的requirements.txt
    --diff <file>將requirements.txt中的模組與專案匯入進行比較。
    --clean <file>通過刪除未在專案中匯入的模組來清理requirements.txt。

$ pipreqs / home / project / location
在/home/project/location/requirements.txt中成功儲存了需求檔案