IOS Profile Pod报错error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54

IOS Profile Pod报错error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54_第1张图片
IOS项目有一Podfile文件通过source来指定pod的来源,执行pod install:

$ pod install
Analyzing dependencies
Cloning spec repo `cocoapods` from `https://github.com/CocoaPods/Specs.git`

一直停止不动。

查看pod repo列表:

$ pod repo list

trunk
- Type: git (unknown)
- URL:  https://cdn.cocoapods.org/
- Path: /Users/lijing/.cocoapods/repos/trunk
- 
1 repos

确实没有:https://github.com/CocoaPods/Specs.git
通过git clone命令下载Specs.git:

$ git clone https://github.com/CocoaPods/Specs.git master

报错:
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
IOS Profile Pod报错error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54_第2张图片
感觉是网络有问题,ping github.com,发现不通。
IOS Profile Pod报错error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54_第3张图片
解决ping不通的问题:
修改hosts文件的映射:

$ sudo vi /etc/hosts

按s进行hosts文件编辑,把下面这段ip-域名映射信息复制进去:

151.101.185.194 github.global.ssl.fastly.net
192.30.253.112 github.com
151.101.184.133 assets-cdn.github.com
151.101.184.133 avatars0.githubusercontent.com
151.101.112.133 avatars1.githubusercontent.com

按ecs键,然后:wq保存成功。
再次ping github.com,发现已通。
IOS Profile Pod报错error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54_第4张图片
继续:git clone https://github.com/CocoaPods/Specs.git

IOS Profile Pod报错error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54_第5张图片
IOS Profile Pod报错error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54_第6张图片
IOS Profile Pod报错error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54_第7张图片
很开心成功了。
IOS Profile Pod报错error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54_第8张图片
但是有一次换了个网络环境或网络环境不稳定时,又有同样的问题:
IOS Profile Pod报错error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54_第9张图片
于是,又想到采用可视化的git工具(我用的Sourcetree)来手动下载。
指定下载目录为:/Users/******/.cocoapods/repos
下载完成后:
IOS Profile Pod报错error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54_第10张图片
执行pod install,成功。
IOS Profile Pod报错error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54_第11张图片

你可能感兴趣的:(IOS)