python 生成requirements 檔案

ZapcoMan發表於2024-10-09
  • python 要生成 requirements檔案 有兩種情況
  1. 具有獨立的虛擬環境
  2. 全域性環境

具有獨立的虛擬環境

 pip freeze > requirements.txt

全域性環境

  • 安裝
pip install pipreqs
  • 在當前目錄生成
 pipreqs . --encoding=utf8 --force

相關文章