首页  >  文章  >  后端开发  >  如何将 GitHub 存储库集成到“requirements.txt”中?

如何将 GitHub 存储库集成到“requirements.txt”中?

Barbara Streisand
Barbara Streisand原创
2024-11-15 04:25:02343浏览

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
  • 分支名称:包名称@ 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

示例:

更新“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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn