2

我有一个关于在 Google Colab 上导入不同分支的问题。

Autograd(https://github.com/HIPS/autograd)有一个可适应cupy的版本,它位于另一个分支(https://github.com/HIPS/autograd/tree/cupy )。我想导入autograd(cupy - 友好的版本进入谷歌 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 不是有效的存储库名称
电子邮件 support@github.com 寻求帮助

命令“git clone -q git://github.com/ericmjl/autograd/tree/cupy /tmp/pip-yoasr9_z-build”失败,错误代码为 128,无

有没有人可以帮助我?非常感谢!!

4

1 回答 1

2

这应该有效:pip install git+https://github.com/ericmjl/autograd.git@cupy

请参阅VCS 支持

于 2018-04-18T02:38:30.977 回答