使用命令:
git clone -b r1.13.0 https://github.com/tensorflow/models.git 克隆 GitHub 上的一个仓库,但是速度超级慢,最高速度不超过 30 KB/s

Git clone 超级慢
解决办法:使用国内镜像网站:github.com.cnpmjs.org,你访问这个网站和访问 github.com 没有任何区别,但是速度快很多,所以我们可以从这个镜像网站进行克隆仓库。
原命令:git clone -b r1.13.0 https://github.com/tensorflow/models.git
现在替换为:git clone -b r1.13.0 https://github.com.cnpmjs.org/tensorflow/models.git
也就是把原 URL 中的 github.com 替换为 github.com.cnpmjs.org,其余保持不变。替换之后再克隆仓库,有了质的提升。
Git clone 超级慢

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-05-12
  • 2021-07-30
  • 2021-07-26
  • 2022-12-23
  • 2022-12-23
  • 2021-06-18
猜你喜欢
  • 2021-09-02
  • 2021-07-12
  • 2021-08-22
  • 2021-07-06
  • 2021-06-09
  • 2022-12-23
  • 2021-11-21
相关资源
相似解决方案