最近在查看项目中一个第三方SDK提供的demo的时候,在使用cocopods 命令
pod install
进行导入demo中的依赖库的时候总是报错fatal: unable to access 'https://github.com/polyv/PLVTimer.git/': LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
具体报错如下:
-
解决方案:
搜索了半天解决方法,最终在stackoverflow上找到了解决方法参考解决方案
方法1.打开终端在终端中执行以下命令就可以了。
git config --global --add remote.origin.proxy ""
方法2.若第一种方法输入命令不管用,可以尝试先输入下边命令,然后在执行第一种方法的命令。
步骤一:
git config --global http.sslBackend "openssl"
步骤二:
git config --global --add remote.origin.proxy ""
输入上边两种任何一种方法然后在执行
pod install
就好了。