pod install速度慢的解决方案

使用国内镜像的Specs
在pod install时使用命令pod install --no-repo-update
使用proxychains使终端命令走代理
下面就来说明一下这几种方法为何没有完全解决问题

使用国内镜像的Specs:这个只是加快了Specs下载更新速度,而且如果使用国内镜像Specs,那么Podfile中就必须指明使用这个Specs。比如我用的source'https://git.coding.net/CocoaPods/Specs.git',而且我想搜索dsBridge这个库是搜不到的。
在pod install时使用命令pod install --no-repo-update:install时不更新本地库,但如果第一次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

如此就从根本上解决了问题,下面附上设置代理前后git命令的速度
代理前

Setting up CocoaPods master repo

  $ /usr/bin/git -C /Users/aioute/.cocoapods/repos/master fetch origin

  --progress

  remote: Enumerating objects: 81208, done.        

  remote: Counting objects: 100% (81208/81208), done.        

  remote: Compressing objects: 100% (241/241), done.        

  Receiving objects:   5% (80216/1401324), 15.95 MiB | 6.00 KiB/s

代理后

Setting up CocoaPods master repo

  $ /usr/bin/git -C /Users/aioute/.cocoapods/repos/master fetch origin

  --progress

  remote: Enumerating objects: 81257, done.        

  remote: Counting objects: 100% (81257/81257), done.        

  remote: Compressing objects: 100% (289/289), done.        

  Receiving objects:  91% (1277133/1401378), 172.01 MiB | 830.00 KiB/s  

如果要恢复/移除上面设置的git代理,使用如下命令

git config --global --unset http.proxy

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

你可能感兴趣的:(pod install速度慢的解决方案)