使用Github从pip进行安装时,需要指定分支或标签
命令 (Command)
在安装时使用”pip install”命令,紧接着使用 @ 符号指定要安装的分支或标签。
$ pip install git+{Clone URL}@{branch/tag}
Django的每个版本都有稳定版。
我身处于一个无法继续使用Django 1.3的环境中,因为有一些问题。
从PyPI安装1.3.7版本后,在static/media方面运行出现了问题,但通过从GitHub安装稳定版,问题得到了解决。
在 Django 存储库中,存在一个名为 stable/版本 的分支,它引用了每个版本的稳定版 HEAD。
$ pip install git+https://github.com/django/django.git@stable/1.3.x
Collecting git+https://github.com/django/django.git@stable/1.3.x
Cloning https://github.com/django/django.git (to stable/1.3.x) to /tmp/pip-T_6pib-build
Installing collected packages: Django
Running setup.py install for Django ... done
Successfully installed Django-1.3.8-pre-alpha
这是版本号为Django-1.3.8-pre-alpha的表示法。您可以在此链接中找到更多信息:https://github.com/django/django/blob/stable/1.3.x/django/__init__.py