使用源安裝CocoaPods庫
git clone https://git.coding.net/CocoaPods/Specs.git ~/.cocoapods/repos/master
如果特別慢孽文,使用以下源安裝CocoaPods庫
git clone https://gitee.com/mirrors/CocoaPods-Specs.git ~/.cocoapods/repos/master
為了解決方案二出現(xiàn)clone github鏡像源比較慢的問題,可以換成coding提供的一個鏡像源澄干,命令行如下:
$ cd ~/.cocoapods/repos
$ pod repo remove master
$ git clone https://git.coding.net/CocoaPods/Specs.git master
這樣在clone的時候會發(fā)現(xiàn)速度很快哈慧库。另外院领,在自己工程中的Podfile文件加入下面一行描述:
source 'https://git.coding.net/CocoaPods/Specs.git'
如果不加這一句話抽米,它默認(rèn)還是從github鏡像源地址去下載的,這個不要給忘記了。
國內(nèi)Gitee碼云也很厲害(https://gitee.com/mirrors/CocoaPods-Specs)'
Podfile第一行設(shè)置:
source 'https://gitee.com/mirrors/CocoaPods-Specs‘
然后執(zhí)行以下命令:
pod setup
打開podfile文件 指定舊方式下載积蔚。
// source 源地址
source 'https://gitee.com/mirrors/CocoaPods-Specs'
platform :ios, ‘9.0’
source 'https://gitee.com/mirrors/CocoaPods-Specs'
target '項目target名' do
pod 'AFNetworking', '~> 3.1.0'
end