1.移除現(xiàn)有Ruby默認(rèn)源
gem sources --remove https://rubygems.org/
2.使用新的源
gem sources -a https://gems.ruby-china.org/
3.驗(yàn)證新源是否替換成功
gem sources -l
4.安裝CocoaPods
(1) sudo gem install cocoapods
備注:
蘋果系統(tǒng)升級(jí) OS X EL Capitan 后改為
sudo gem install -n /usr/local/bin cocoapods
或者
sudo gem install -n /usr/local/bin cocoapods --pre
再加一句挤牛,完美解決毅整。
sudo xcode-select --switch /Applications/Xcode.app
(2) pod setup
備注:
將 CocoaPods Specs repository復(fù)制到你電腦上~/.cocoapods目錄下。完畢之后這個(gè)文件夾大概有100多M附鸽,需要花費(fèi)比較多時(shí)間屯断,請(qǐng)耐心等待文虏。如果安裝失敗 ~/.cocoapods 里面是空的,就需要重新setup裹纳。命令如下:
pod repo remove master
pod setup
5.更新gem
sudo gem update --system
6. 搜索第三方開源庫(kù)
pod search 第三方
7.查看版本
pod --version
8.卸載 cocoapods
sudo gem uninstall cocoapods
9.創(chuàng)建配置Podfile
vim Podfile
寫入以下內(nèi)容并保存
小提示:(終端vim文件 按 i 可編輯 择葡,esc 退出編輯紧武,:wq 可保存退出)
platform:ios, ‘7.0’
pod 'AFNetworking', '~> 2.3.1'
或者
pod init
用Xcode打開Podfile命令
open -a Xcode Podfile
備注:
1).避免CocoaPods的引入顯示警告剃氧,可以在Podfile最上方加上:inhibit_all_warnings!
2).單獨(dú)設(shè)置打開編譯警告:
例如:pod 'Alamofire', '~> 3.0.0-beta.3', :inhibit_warnings => true
3).對(duì)Podfile修改安裝之后編譯項(xiàng)目,可能會(huì)出現(xiàn)如下警告:
The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.
正確的做法是:
a.Project Cleanup.
b.Remove all libPods*.a in Linked Frameworks and Libraries.
c.Update CocoaPods using the command pod install.
10.導(dǎo)入第三方庫(kù)
第一次:pod install
以后:pod update
備注:
問題:執(zhí)行pod install或pod update都卡在Analyzing dependencies不動(dòng)阻星。
原因:執(zhí)行以上兩個(gè)命令的時(shí)候朋鞍,會(huì)升級(jí)CocoaPods的spec倉(cāng)庫(kù)。
解決方案:
pod install --verbose --no-repo-update
pod update --verbose --no-repo-update
以下是我安裝時(shí)出現(xiàn)的一些錯(cuò)誤妥箕。
錯(cuò)誤1:
Error fetching http://ruby.taobao.org/:
bad response Not Found 404 (http://ruby.taobao.org/specs.4.8.gz)
解決方案:
gem sources -a http://ruby.taobao.org/ ---改為---->
gem sources -a https://ruby.taobao.org/
錯(cuò)誤2:
ERROR: While executing gem ... (Errno::EPERM)
Operation not permitted - /usr/bin/pod
解決方案:
因?yàn)樘O果系統(tǒng)升級(jí)OS X EL Capitan后會(huì)出現(xiàn)的插件錯(cuò)誤滥酥。
可將安裝流程4.安裝CocoaPods 的 (1)
sudo gem install cocoapods ---改為---->
sudo gem install -n /usr/local/bin cocoapods
錯(cuò)誤3:
[!] Unable to satisfy the following requirements: - AVOSCloud (~> 3.1.6.3)
required by Podfile
Specs satisfying the AVOSCloud (~> 3.1.6.3)
dependency were found, but they required a higher minimum deployment target.
解決方案:
Podfile文件中platform:ios, ‘7.0’ 后邊的 7.0 是平臺(tái)版本號(hào),一定要加上畦幢。
錯(cuò)誤4:
[!] Unable to satisfy the following requirements: - `AFNetworking (~> 2.5.1)
解決方案:
pod repo remove master
pod repo add master https://gitcafe.com/akuandev/Specs.git
pod repo update