【错误记录】PyCharm 中从 GitHub 中 Clone 代码到本地报错 ( OpenSSL SSL_read: Connection was reset, errno 10054 )

文章目录

  • 一、报错信息
  • 二、解决方案

一、报错信息


在 PyCharm 中从 GitHub 中 Clone 代码到本地报错 :

代码语言:javascript
复制
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 配置如下内容 ;

代码语言:javascript
复制
140.82.114.4 github.com
151.101.77.194 github.global.ssl.fastly.net  
在这里插入图片描述

配置完毕后的效果 :

在这里插入图片描述

设置了 hosts 文件 , GitHub 中的源代码下载成功 ;

在这里插入图片描述