使用git clone,遇到的问题:
fatal: unable to access 'https://github.com/ultralytics/ultralytics/': gnutls_handshake() failed: The TLS connection was non-properly terminated.
原因分析:
git拉取时,会有http或https代理,取消代理即可。
解决方案:
//取消http代理 git config --global --unset http.proxy //取消https代理 git config --global --unset https.proxy
或使用科学上网。
版权归原作者 sqing_L 所有, 如有侵权,请联系我们删除。