python如何匯出專案依賴【pipreqs】

eliwang發表於2024-03-22

1、匯出python環境中的所有依賴

pip freeze >requirements.txt

此方法會匯出python環境所有安裝過的依賴

2、僅匯出當前專案中的依賴

  • 需要使用pipreqs這個工具
  • 安裝
    pip install pipreqs
  • 然後進入專案的根目錄,並執行
    pipreqs . --encoding=utf8 --force

    【.】:表示生成的requirements.txt檔案所在目錄,即當前目錄下
    【--encoding=utf8】:指定檔案編碼
    【--force】:如果已經存在requirements.txt,則強行覆蓋

相關文章