在requirements.txt中指定GitHub源
要将从GitHub存储库安装的库集成到您的依赖项中,请修改您的requirements.txt文件如下所示:
对于 GitHub 存储库,省略“package==version”命名约定。相反,请使用以下格式:
package-name @ git+git://github.com/owner/repo@reference
其中“引用”可以是:
示例:
更新“package-two”与 GitHub 存储库的依赖关系,请在您的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中文网其他相关文章!