错误记录PyCharm 中从 GitHub 中 Clone 代码到本地报错 ( OpenSSL SSL_read: Connection was reset, errno 10054 )(
Posted 韩曙亮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了错误记录PyCharm 中从 GitHub 中 Clone 代码到本地报错 ( OpenSSL SSL_read: Connection was reset, errno 10054 )(相关的知识,希望对你有一定的参考价值。
一、报错信息
在 PyCharm 中从 GitHub 中 Clone 代码到本地报错 :
10:01:37.091: [C:\\Users\\octop\\PycharmProjects] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false clone --progress --recurse-submodules https://github.com/han1202012/ELF_Parser.git -- ELF_Parser
Cloning into 'ELF_Parser'...
fatal: unable to access 'https://github.com/han1202012/ELF_Parser.git/': OpenSSL SSL_read: Connection was reset, errno 10054
二、解决方案
最简单的方法 , 爬个梯子 , 就能解决上述问题 , GitHub 对国内支持很差 ;
如果没有梯子 , 使用下面的方法解决 ;
如果想要裸连使用 GitHub , 参考 【错误记录】GitHub 提交代码失败、获取代码失败、连接超时、权限错误、ping 请求连接超时 ( 查找域名对应 IP | 设置 host 文件 ) 博客 ;
查找 github.global.ssl.fastly.net 和 github.com 域名对应的有效 IP 地址 , 配置到 C:\\Windows\\System32\\drivers\\etc\\hosts 文件中 ;
一定要注意 , 下面的两个 IP 地址在 2021 年 10 月 28 日 是有效的 , 不能保证一直有效 ; 如果无效 , 到 到 https://www.ip138.com/ 地址查询 github.com , github.global.ssl.fastly.net 这两个域名对应的 IP 地址是多少, 并且经过验证后 , 再设置到 hosts 文件中 ;
配置对应域名的 IP 地址 : 在 C:\\Windows\\System32\\drivers\\etc\\hosts 配置如下内容 ;
140.82.114.4 github.com
151.101.77.194 github.global.ssl.fastly.net
配置完毕后的效果 :
设置了 hosts 文件 , GitHub 中的源代码下载成功 ;
以上是关于错误记录PyCharm 中从 GitHub 中 Clone 代码到本地报错 ( OpenSSL SSL_read: Connection was reset, errno 10054 )(的主要内容,如果未能解决你的问题,请参考以下文章
错误记录GitHub 网站和仓库无法访问 ( 域名重定向 | 检查 C:WindowsSystem32driversetchosts 配置文件中的 GitHub 地址域名配置 )