由于众所周知的原因,CocoaPods安装起来很慢。网上流传的各种方法往往不奏效。网上提供了几种解决方案,但是都没有完全解决速度慢的问题。
其实真正慢的原因并不在pod命令,而是在于github上的代码库访问速度慢,那么就知道真正的解决方案就是要加快 git 命令的速度。我在本地使用 socks 代理,配置好代理之后去终端输入 git 配置命令,命令如下:
git config --global http.proxy socks5://127.0.0.1:<your local socks proxy port>
上面的命令是给git设置全局代理,但是我们并不希望国内git库也走代理,而是只需要github上的代码库走代理,命令如下
git config --global http.https://github.com.proxy socks5://127.0.0.1:<your local socks proxy port>
如果要恢复/移除上面设置的git代理,使用如下命令:
git config --global --unset http.proxy
git config --global --unset http.https://github.com.proxy