【RN小记】解决Mac下Pod install 缓慢 或 error: RPC failed; 或 the remote end hung up unexpectedly

针对Mac下使用Pod install 进行安装插件或者更新等操作时,由于天朝网络问题,经常遇到如下错误:

 RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54

或:

error: RPC failed; curl 18 transfer closed with outstanding read data remaining

或:

fatal: the remote end hung up unexpectedly

  出现此类问题,大部分都是网络导致的,下面记录一种让你pod install 起飞的方式,【需用到小灰机 SS】

1. 开启ss并开启全局代理:

2. 点击-> 偏好设置

3. 点击-> 高级设置 或 Socks5

    a) 设置本地监听地址: 127.0.0.1

    b) 设置端口: 1086  (原端口:10808)

4. 控制台以此输入如下:   

git config --global http.https://github.com.proxy socks5://127.0.0.1:1086

ok,此时即可再次尝试 pod install ,觉得起飞的速度,具体进度可以打开 【活动监视器】

【注意】:使用并安装好后,可以使用如下命令行进行代理恢复:

git config --global --unset http.https://github.com.proxy

 

你可能感兴趣的:(ReactNative)