首頁 >後端開發 >Python教學 >如何將 GitHub 儲存庫整合到'requirements.txt”中?

如何將 GitHub 儲存庫整合到'requirements.txt”中?

Barbara Streisand
Barbara Streisand原創
2024-11-15 04:25:02433瀏覽

How to Integrate GitHub Repositories into `requirements.txt`?

在requirements.txt中指定GitHub來源

要將從GitHub儲存庫安裝的庫整合到您的依賴項中,請修改您的requirements.txt檔案如下所示:

對於GitHub 儲存庫,省略「package==version」命名約定。相反,請使用以下格式:

package-name @ git+git://github.com/owner/repo@reference

其中「引用」可以是:

  • 提交雜湊: package-name @ git https:/ / github.com/owner/repo@41b95ec
  • 分支名稱: package-name @ git https://github.com/owner/repo@main
  • 標籤:包名@ git https://github.com/owner/repo@0.1
  • 發佈:包名@git https://github.com / owner/repo@releases/tag/v3.7.1

範例:

要使用GitHub 儲存庫更新「package-two」依賴項,請使用requirements.txt 中的以下配置之一:

package-two @ git+https://github.com/owner/repo@41b95ec
package-two @ git+https://github.com/owner/repo@main
package-two @ git+https://github.com/owner/[email protected]
package-two @ git+https://github.com/owner/repo@releases/tag/v3.7.1

注意:在某些pip 版本中,更新套件的setup.py 中的套件版本,以避免假設需求已經存在遇見了。

以上是如何將 GitHub 儲存庫整合到'requirements.txt”中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn