可以在自定义Git存储库的Pipfile包中指定.
但是我找不到关于如何指定具体分支或用于安装的提交的综合文档.
是否有完整的参考,如何在Pipfile中使用Git URL来支持pipenv
中用于指定自定义分支,版本或提交的Pthon文件?
使用等效的pipenv命令行参数非常好.
最佳答案
以下是关于pipenv的GitHub仓库的一些文档:
原文链接:https://www.f2er.com/python/438816.htmlYou 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