pycharm中如何解决unable to access 'http://gitee.com/wangnihao/test001.git/': error setting certificate verify locations: CAfile:
时间: 2023-12-24 14:19:43 浏览: 112
这个错误是由于PyCharm无法验证证书而导致的。可以尝试以下解决方案:
1. 在PyCharm的设置中找到“Tools” -> “SSH Configurations”,将“Strict Host Key Checking”设置为“no”。
2. 打开终端,输入以下命令:
git config --global http.sslVerify false
这将禁用全局git的SSL验证。
3. 重新启动PyCharm,尝试再次访问Git仓库。
如果以上解决方案无法解决问题,可以尝试更新Git证书。输入以下命令:
git config --system --unset-all http.sslCAInfo
git config --system --unset-all http.sslCAPath
git config --system --unset-all http.sslcainfo
git config --system --unset-all http.sslcapath
git config --global http.sslVerify true
然后重新启动PyCharm,尝试再次访问Git仓库。如果问题仍然存在,可能需要联系Git仓库管理员寻求帮助。
相关问题
pycharm unable to access 'https://github.com/CongWeilin/GraphMixer.git/': SSL certificate problem: unable to get local issuer certificate
当在PyCharm中上传代码至GitHub时遇到SSL证书问题时,可能是由于服务器上的SSL证书未经过第三方机构认证导致的。此时可以尝试通过关闭git中的sslverify来解决问题。可以使用以下命令来关闭sslverify:
git config --global http.sslverify false
这样一来,就可以绕过SSL证书验证,上传代码至GitHub。
阅读全文