(收藏必备)机器视觉全栈开发常用资源下载加速hub

方法简述:

将开头的https换成git,如
git clone https://github/pytorch/pytorch.git
换成
git clone git://github/pytorch/pytorch.git

详细说明

我们经常需要在github下载代码资源,或是修改代码为己所用,或是整合到系统中
但是,因为你懂的原因速度是真的慢

比如,你思考良久,下决心阅读pytorch代码,首先需要下载下来:
git clone https://github/pytorch/pytorch.git

git clone https://github/pytorch/pytorch.git

就会出现

不好意思,搞错了,会出现类似下面的情况:

这个时候,可以将原来的命令改成
git clone git://github/pytorch/pytorch.git

git clone git://github/pytorch/pytorch.git

完结散花:

更多推荐

(收藏必备)git clone命令下载github资源速度慢解决方法