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

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协议说明符的链接,所以这可能是不支持的。

有人能解决我的问题吗?


当前回答

通常你的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在这里不是注释,而是显式地声明包的名称

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

其他回答

我发现让pip3 (v9.0.1版本,由Ubuntu 18.04的包管理器安装)实际安装我告诉它安装的东西有点棘手。我发布这个答案是为了节省遇到这个问题的人的时间。

将此放入requirements.txt文件失败:

git+git://github.com/myname/myrepo.git@my-branch#egg=eggname

我所说的“失败”是指当它从Git下载代码时,它最终安装了在PyPi上找到的原始版本的代码,而不是在该分支上的repo中的代码。

然而,安装提交而不是安装分支名称是有效的:

git+git://github.com/myname/myrepo.git@d27d07c9e862feb939e56d0df19d5733ea7b4f4d#egg=eggname

“可编辑的”包语法可以在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

首先,安装git+git或git+https,以任何你知道的方式。安装brabeion项目kronok分支的例子:

pip install -e git+https://github.com/kronok/brabeion.git@12efe6aa06b85ae5ff725d3033e38f624e0a616f#egg=brabeion

其次,使用pip freeze > requirements.txt在requirements.txt中获取正确的内容。在这种情况下,你会得到

-e git+https://github.com/kronok/brabeion.git@12efe6aa06b85ae5ff725d3033e38f624e0a616f#egg=brabeion-master

第三,检验结果:

pip uninstall brabeion
pip install -r requirements.txt

通常你的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在这里不是注释,而是显式地声明包的名称

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

这似乎也是一种有效的格式:

gym-tictactoe @ git+https://github.com/haje01/gym-tictactoe.git@84e22fc28fe192ba0040bdd56a697f63d3d4a3d5

如果您执行pip install“git+https://github.com/haje01/gym-tictactoe.git”,然后查看通过运行pip freeze安装了什么,您将看到以这种格式描述的包,并可以复制并粘贴到requirements.txt中。