在requirements.txt中指定GitHub來源
要將從GitHub儲存庫安裝的庫整合到您的依賴項中,請修改您的requirements.txt檔案如下所示:
對於GitHub 儲存庫,省略「package==version」命名約定。相反,請使用以下格式:
package-name @ git+git://github.com/owner/repo@reference
其中「引用」可以是:
範例:
要使用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中文網其他相關文章!