使用git clone,遇到的问题:
fatal: unable to access 'https://github.com/ultralytics/ultralytics/': gnutls_handshake() failed: The TLS connection was non-properly terminated.
原因分析:
git拉取时,会有http或https代理,取消代理即可。文章来源:https://www.toymoban.com/news/detail-579639.html
解决方案:
//取消http代理 git config --global --unset http.proxy //取消https代理 git config --global --unset https.proxy
或使用科学上网。文章来源地址https://www.toymoban.com/news/detail-579639.html
到了这里,关于解决fatal:unableto access的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!