27

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

是否有关于如何将 Git URL用于指定自定义分支、版本或提交Pipfile所支持的python 包的完整参考?pipenv

将它与等效的pipenv命令行参数一起使用会非常好。

4

1 回答 1

34

以下是有关 pipenv 的 GitHub 存储库的一些文档:

您可以使用根据以下规则格式化的 URL 从 git 和其他版本控制系统安装带有 pipenv 的软件包:

<vcs_type>+<scheme>://<location>/<user_or_organization>/<repository>@<branch_or_tag>#egg=<package_name>

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 的文档在此处更详细地介绍

于 2018-12-14T15:54:42.523 回答