尝试pip安装 repo 的特定分支。谷歌告诉我
pip
pip install 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。
issue/34/oscar-0.6
pip install https://github.com/tangentlabs/django-oscar- paypal.git@/issue/34/oscar-0.6
我如何安装这个分支?
添加 url 前缀git+(请参阅VCS 支持):
git+
pip install git+https://github.com/tangentlabs/django-oscar-paypal.git@issue/34/oscar-0.6
并指定不带前导的分支名称/。
/