Python / pip,如何从github安装特定版本的git存储库(什么是正确的URL)?

时间:2014-05-07 14:58:49

标签: python django git github

我想通过pip安装Django 1.7。它目前是一个开发版本,因此不在pips存储库中。

所以我在使用之前已经从github安装了包:

pip install git+[url here]

现在看github,我在django页面上获得了克隆网址:

https://github.com/django/django.git

但这没有提及分支。如何指定我想要1.7版本? 它是否在github页面上显而易见?

1 个答案:

答案 0 :(得分:18)

在网址末尾的@后指定分支提交哈希标记名称

pip install git+https://github.com/django/django.git@1.7b3

这将安装version tagged with 1.7b3

参考:https://pip.pypa.io/en/latest/reference/pip_install.html#git