我有一个关于在Google Colab上导入仓库的不同分支的问题。
Autograd(https://github.com/HIPS/autograd)具有可适应cupy的版本,该版本位于另一个分支中(https://github.com/HIPS/autograd/tree/cupy).I想要将autograd(对cupy友好的版本)导入google colab,并使用以下命令:
!pip install git+git://github.com/ericmjl/autograd/tree/cupy
但它具有以下错误:
收集git + git://github.com/ericmjl/autograd/tree/cupy
克隆
git://github.com/ericmjl/autograd/tree/cupy到/ tmp / pip-yoasr9_z-build
致命:
远程错误:ericmjl / autograd / tree / cupy无效
仓库名称
电子邮件[email protected]寻求帮助
命令“ git clone
-q git://github.com/ericmjl/autograd/tree/cupy / tmp / pip-yoasr9_z-build失败,错误代码为128
有谁可以帮助我吗?非常感谢!!
最佳答案
这应该起作用:pip install git+https://github.com/ericmjl/autograd.git@cupy
参见VCS support。