Python-从git repo分支安装pip
尝试pip安装仓库的特定分支。Google告诉我
点安装git + https://github.com/user/repo.git@branch
分支的名称是issue/34/oscar-0.6
我这样做的,pip install https://github.com/tangentlabs/django-oscar-paypal.git@/issue/34/oscar-0.6但是它返回了404。
如何安装此分支?
回答:
在url前缀之前git+
(请参阅VCS支持):
pip install git+https://github.com/tangentlabs/django-oscar-paypal.git@issue/34/oscar-0.6
并指定不带前导的分支名称/。
以上是 Python-从git repo分支安装pip 的全部内容, 来源链接: utcz.com/qa/416926.html