- ①代理VPN方式
相信大家已经感受到pod install
速度越来越慢了,网上提供了几种解决方案,但是都没有完全解决速度慢的问题。
使用国内镜像的Specs
在pod install
时使用命令pod install --no-repo-update
使用proxychains
使终端命令走代理
下面就来说明一下这几种方法为何没有完全解决问题
使用国内镜像的Specs
极大地加快了Specs
下载更新速度,而且如果使用国内镜像Specs
,那么Podfile
中就必须指明使用这个Specs
。
在pod install
时使用命令pod install --no-repo-update
时不更新本地库,但如果第一次install
还是要去github clone
代码
使用proxychains
使终端命令走代理
这个只是使pod命令走代理,git download
的时候不会走代理
其实真正慢的原因并不在pod命令,而是在于github上的代码库访问速度慢,那么就知道真正的解决方案就是要加快git命令的速度。
我使用Shadowsocks代理,默认代理端口为1080,配置好代理之后去终端输入git配置命令,命令如下
git config --global http.proxy socks5://127.0.0.1:1080
上面的命令是给git设置全局代理,但是我们并不希望国内git库也走代理,而是只需要github上的代码库走代理,命令如下
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
ps:如果要恢复/移除上面设置的git代理,使用如下命令
git config --global --unset http.proxy
git config --global --unset http.https://github.com.proxy
- ②更改host
执行下面的操作会使整个过程更快一些
* 进入网址https://www.ipaddress.com/
* 输入 gitHub.com 找到GitHub的ip地址
* 然后打开hosts (打开hosts的操作是`sudo vim /etc/hosts`)添加 ip http://github.com