赞
踩
git clone较大的工程产生如上报错,查资料应该是由于git默认缓存大小不足导致的。
解决办法,增大缓存空间:
git config --global http.postBuffer 1048576000
后来又报错:
error: RPC failed; curl 56 GnuTLS recv error (-54): Error in the pull function.
解决方法:
将https协议改为ssh
即将
git clone --branch v0.8.1 https://github.com/pytorch/vision torchvision
改为
git clone --branch v0.8.1 git://github.com/pytorch/vision torchvision
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。