CocoaPods安装及使用

1.移除现有Ruby默认源

gem sources --remove https://rubygems.org/

2.使用新的源

gem sources -a https://gems.ruby-china.org/

3.验证新源是否替换成功

gem sources -l

4.安装CocoaPods

(1) sudo gem install cocoapods

备注:

苹果系统升级 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复制到你电脑上~/.cocoapods目录下。完毕之后这个文件夹大概有100多M,需要花费比较多时间,请耐心等待。如果安装失败 ~/.cocoapods 里面是空的,就需要重新setup。命令如下:
pod repo remove master
pod setup

5.更新gem

sudo gem update --system

6. 搜索第三方开源库

pod search 第三方

7.查看版本

pod --version

8.卸载 cocoapods

sudo gem uninstall cocoapods

9.创建配置Podfile

vim Podfile
写入以下内容并保存
小提示:(终端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).单独设置打开编译警告:
例如:pod 'Alamofire', '~> 3.0.0-beta.3', :inhibit_warnings => true
3).对Podfile修改安装之后编译项目,可能会出现如下警告:
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.导入第三方库

第一次:pod install
以后:pod update

备注:

问题:执行pod install或pod update都卡在Analyzing dependencies不动。
原因:执行以上两个命令的时候,会升级CocoaPods的spec仓库。
解决方案:
pod install --verbose --no-repo-update
pod update --verbose --no-repo-update

以下是我安装时出现的一些错误。

错误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/

错误2:

ERROR: While executing gem ... (Errno::EPERM)
Operation not permitted - /usr/bin/pod
解决方案:
因为苹果系统升级OS X EL Capitan后会出现的插件错误。
可将安装流程4.安装CocoaPods 的 (1)
sudo gem install cocoapods ---改为---->
sudo gem install -n /usr/local/bin cocoapods

错误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 是平台版本号,一定要加上。

错误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

你可能感兴趣的:(CocoaPods安装及使用)