Windows环境下,需要到官网下载git,到指定文件夹中打开git bash。
输入命令
git clone https://github.com/NVIDIA/apex.git
时会报错。
原因可能是默认配置了https代理,这里需要改为git协议。
解决方法:
1:确保VPN打开的情况下,打开系统设置->网络和Internet->代理。找到自己的代理IP,如下:
2:在git bash 中依次输入以下指令
git config --global http.proxy http://127.0.0.1:4780
git config --global git.proxy http://127.0.0.1:4780
git config --global --unset https.proxy
问题得到解决。
继续执行git clone https://github.com/NVIDIA/apex.git
成功下载!文章来源:https://www.toymoban.com/news/detail-512724.html
参考博客git clone出现 fatal: unable to access.......文章来源地址https://www.toymoban.com/news/detail-512724.html
到了这里,关于解决fatal: unable to access ‘https://github.com/NVIDIA/apex.git/‘: Recv failure: Connection was reset的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!