pycharm中如何解决unable to access 'http://gitee.com/wangnihao/test001.git/': error setting certificate verify locations: CAfile:
时间: 2023-12-24 17:19:43 浏览: 110
如何解决pycharm调试报错的问题
5星 · 资源好评率100%
这个错误是由于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仓库管理员寻求帮助。
阅读全文