pod install的时候出现报错
[!] Couldn't determine repo type for URL: `https://github.com/CocoaPods/Specs.git`: Connection reset by peer - SSL_connect
这就意味着你的podfile文件里引入了这样的源
source 'https://github.com/CocoaPods/Specs.git'
但是由于访问github上的这个资源需要挂代理才能请求到
所以首先你需要搞一个科学上网,其次你需要安排上代理,然后找到监听的地址和端口号,like this ⬇️
然后你就只需要在终端配置一下pod的http代理就可以了,当然你也可以用sock5
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'
//看个人需要,设置其中一个就可以,当然监听到的地址和端口号需要根据你自己的来设置哦!
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
//取消代理的方法
git config --global --unset http.proxy
git config --global --unset https.proxy
整个文件大概要600MB+所以如果网速很慢的话呢你可能需要多等一会,他没有任何进度提示,所以只能等。。。
注意注意⚠️!
有时候你访问github需要在网络设置里挂代理或验证证书
但是每次科学上网之后都会清空你的网络设置里的代理
目前来讲,你每次都还是需要再设置一次,还没找到更好的方法