python – 如何使用pipfile在自定义git分支的pipfile包中指定?

前端之家收集整理的这篇文章主要介绍了python – 如何使用pipfile在自定义git分支的pipfile包中指定?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

可以在自定义Git存储库的Pipfile包中指定.
但是我找不到关于如何指定具体分支或用于安装的提交的综合文档.

是否有完整的参考,如何在Pipfile中使用Git URL来支持pipenv中用于指定自定义分支,版本或提交的Pthon文件

使用等效的pipenv命令行参数非常好.

最佳答案
以下是关于pipenv的GitHub仓库的一些文档:

You can install packages with pipenv from git and other version
control systems using URLs formatted according to the following rule:

https://github.com/pypa/pipenv/blob/master/docs/basics.rst#-a-note-about-vcs-dependencies

所以,例如:

[packages]
requests = {git = "https://github.com/requests/requests.git",editable = true,ref = "v2.20.1"}

您可以使用命令行生成Pipfile.上面的Pipfile生成为:

pipenv install -e git+https://github.com/requests/requests.git@v2.20.1#egg=requests

pip的文档详细介绍了here

原文链接:https://www.f2er.com/python/438816.html

猜你在找的Python相关文章