我已经使用命令安装了一个库

pip install git+git://github.com/mozilla/elasticutils.git

它直接从Github存储库安装。这工作得很好,我想在我的需求。txt的依赖。我看了其他类似的票,但这并没有解决我的问题。如果我放

-f git+git://github.com/mozilla/elasticutils.git
elasticutils==0.7.dev

在requirements.txt文件中,PIP install -r requirements.txt的结果如下:

Downloading/unpacking elasticutils==0.7.dev (from -r requirements.txt (line 20))
  Could not find a version that satisfies the requirement elasticutils==0.7.dev (from -r requirements.txt (line 20)) (from versions: )
No distributions matching the version for elasticutils==0.7.dev (from -r requirements.txt (line 20))

需求文件的文档没有提到使用git+git协议说明符的链接,所以这可能是不支持的。

有人能解决我的问题吗?


当前回答

这些答案对我都没用。唯一有效的方法是:

git+https://github.com/path_to_my_project.git

没有“e”,没有双“git”,也不需要以前的安装。

其他回答

Github有zip端点,在我看来比使用git协议更可取。优点是:

您不必指定#egg=<项目名称> Git不需要安装在您的环境中,这对于容器化环境很好 它与pip散列和缓存一起工作得更好 URL结构更容易记住,更容易被发现

你通常希望requirements.txt的条目看起来像这样,例如没有-e前缀:

https://github.com/org/package/archive/1a58aa586efd4bca37f2cfb9d9348958986aab6c.tar.gz

从主分支安装:

https://github.com/org/package/archive/main.tar.gz

还有一个等效的.zip端点,但在一个评论中报告说,总是使用.tar.gz端点可以避免unicode包名的问题。

这些答案对我都没用。唯一有效的方法是:

git+https://github.com/path_to_my_project.git

没有“e”,没有双“git”,也不需要以前的安装。

“可编辑的”包语法可以在requirements.txt中使用,从各种VCS (git, hg, bzr, svn)导入包:

-e git://github.com/mozilla/elasticutils.git#egg=elasticutils

同样,也可以指向特定的commit:

-e git://github.com/mozilla/elasticutils.git@000b14389171a9f0d7d713466b32bc649b0bed8e#egg=elasticutils

通常你的requirements.txt文件看起来是这样的:

package-one==1.9.4
package-two==3.7.1
package-three==1.0.1
...

要指定一个Github回购,你不需要package-name==约定。

下面的例子使用GitHub回购更新package- 2。@和#之间的文本表示包的细节。

指定提交散列(41b95ec在更新的requirements.txt上下文中):

package-one==1.9.4
git+https://github.com/path/to/package-two@41b95ec#egg=package-two
package-three==1.0.1

指定分支名称(master):

git+https://github.com/path/to/package-two@master#egg=package-two

指定标签(0.1):

git+https://github.com/path/to/package-two@0.1#egg=package-two

指定版本(3.7.1):

git+https://github.com/path/to/package-two@releases/tag/v3.7.1#egg=package-two

注意,#egg=package-two在这里不是注释,而是显式地声明包的名称

这篇博客文章对这个话题有更多的讨论。

Requirements.txt允许以以下方式指定对PIP 7.0:1的git存储库中的包的依赖项

[-e] git+git://git.myproject.org/SomeProject#egg=SomeProject
[-e] git+https://git.myproject.org/SomeProject#egg=SomeProject
[-e] git+ssh://git.myproject.org/SomeProject#egg=SomeProject
-e git+git@git.myproject.org:SomeProject#egg=SomeProject (deprecated as of Jan 2020)

对于Github,这意味着你可以做(注意省略的-e):

git+git://github.com/mozilla/elasticutils.git#egg=elasticutils

为什么要多一个答案? 我对其他答案中的-e标志有点困惑,所以这里是我的澄清:

-e或——editable标志意味着包安装在<venv path>/src/SomeProject中,而不是深埋的<venv path>/lib/pythonX中。X/site-packages/SomeProject,否则它将被放置在2中

文档

1 https://pip.readthedocs.org/en/stable/reference/pip_install/#git 2 https://pip.readthedocs.org/en/stable/reference/pip_install/#vcs-support