CocoaPods作用:集成与更新第三方SDK。
因为更新SDK的时候失败了,没办法只好重装。
一.
1.先卸载老版本
$ sudo gem uninstall cocoapods
2.查看本地安装过的cocopods相关东西
$ gem list --local | grep cocoapods
显示如下:
cocoapods (1.0.1)
cocoapods-core (1.0.1)
cocoapods-deintegrate (1.0.1)
cocoapods-downloader (1.1.1)
cocoapods-plugins (1.0.0)
cocoapods-search (1.0.0)
cocoapods-stats (1.0.0)
cocoapods-trunk (1.0.0)
cocoapods-try (1.1.0)
然后使用命令逐个删除
$ sudo gem uninstall cocoapods-core
$ sudo gem uninstall cocoapods-deintegrate
删除完之后接下来安装RVM
RVM 是干什么的这里就不解释了,后面你将会慢慢搞明白。
$ curl -L https://get.rvm.io | bash -s stable
然后,载入 RVM 环境
$ source ~/.rvm/scripts/rvm
检查一下是否安装正确
$ rvm -v
rvm 1.27.0 (latest) by Wayne E. Seguin , Michal Papis [https://rvm.io/]
用RVM安装Ruby环境
可以先查询已经安装的ruby
$ rvm list
卸载一个已安装版本
$ rvm remove 1.9.2
列出已知的ruby版本
$ rvm list known
可以选择现有的rvm版本来进行安装(下面以rvm 2.3.0版本的安装为例)
$ rvm install 2.3.0
这里需要等上一段时间
二.
设置Ruby版本
RVM 装好以后,需要执行下面的命令将指定版本的 Ruby 设置为系统默认版本
$ rvm 2.3.0 --default
同样,也可以用其他版本号,前提是你有用 rvm install 安装过那个版本
这个时候你可以测试是否正确
$ ruby -v
ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin15]
三
安装coocapods 其实也需要FQ的,这里不多说了,直接切换到淘宝镜像服务器
查询:
$ gem sources -l
可以查看当前是什么连接,然后替换方式如下:
$ gem source -r https://rubygems.org/
$ gem source -a https://ruby.taobao.org/
听说最近淘宝镜像也不能用了,我换成了 ruby-china的镜像
$gem sources -a https://gems.ruby-china.com/
要想验证是否替换成功了,可以执行:
$ gem sources -l
成功显示
*** CURRENT SOURCES ***
https://gems.ruby-china.org/
四
这里开始安装 cocoapods
$ sudo gem install cocoapods 差不多过个几十秒吧
$ pod setup
Terminal会停留在 Setting up CocoaPods master repo 这个状态一段时间,是因为要进行下载安装,而且目录比较大,需要耐心等待一下,或者可以右键新建窗口
$cd ~/.cocoapods/
$du-sh *
会显示下载了多少,着急的话就隔一段时间du -sh*一下查看下载进度。
看到最后一条
gems installed 表示安装成功了
五.安装问题
1.在pod setup时,一直卡在Setting up CocoaPods master repo 这个状态,接着出现了
appledeMacBook-Pro:~ apple$ pod setup
Setting up CocoaPods master repo
[!]/usr/bin/git clone https://github.com/CocoaPods/Specs.git master
Cloning into 'master'...
error: RPC failed;curl 18 transfer closed with outstanding read data remaining
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
解决办法
$ git config --global http.postBuffer 24288000
$ git config --list
会输出:http.postbuffer=24288000
再次执行:
$pod setup
公司的网络比较差,放着下载了一晚上第二天过来就装好了。
在遇到这个问题的时候找了很多方法,几乎每个方法都试过了,最后才在使用这个解决的,如果不能解决,可以再试试别的方法,这里不再赘述。
2.或者出现问题:
[!] /usr/bin/git clone https://github.com/CocoaPods/Specs.git master --progress
Cloning into 'master'...
remote: Counting objects: 1067317, done.
remote: Compressing objects: 100% (334/334), done.
error: RPC failed; curl 56 SSLRead() return error -98060 KiB/s
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
解决方法:
如果你只有一个xcode,输入一下命令:
sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
如果你有多个xcode的,修改下面这行,根据你默认的xcode来修改在/Applications/和/Contents/Developer中间的app的名字,如果你默认的是Xcode x.x.x.app,中间就要替换掉哟!:
sudo xcode-select -switch /Applications/Xcode7.3.1.app/Contents/Developer
再次执行:
$pod setup
3.CocoaPods更新版本后,安装跟更新第三方报错
Update all pods
Re-creating CocoaPods due to major version update.
Updating local specs repositories
Analyzing dependencies
[!] The dependency `ReactiveCocoa (~>2.5)`isnot usedinany concrete target.
The dependency `UMengAnalytics-NO-IDFA`isnot usedinany concrete target.
The dependency `Fabric`isnot usedinany concrete target.
The dependency `Crashlytics`isnot usedinany concrete target.
可以通过$ pod --version查看版本号;
原因是podfile升级到最新版本,pod里的内容必须明确指出所用第三方库的target;可以修改Podfile文件的配置文件,让它兼容不指定固定版本;且又不报错;
platform :ios,'7.0'
target 'targetName’ do
pod'ReactiveCocoa','~> 2.5
'pod'SDWebImage','~> 3.7.5
'pod'AFNetworking','~> 2.5.4'
end
其中targetName要换成当前target名,最后不要忘记增加一个end结尾,当然如果你的工程是有多个target都要引用;则要使用link_with(这个一定要放在文件第一行)如下:
link_with ['targetName1','targetName2','targetName3']
platform :ios,'7.0'
pod'ReactiveCocoa','~> 2.5
end
4.pod install
Analyzing dependencies
[!] Unable to satisfy the following requirements:
- `ReactiveObjC (~> 3.0.0)` required by `Podfile`
None of your spec sources contain a spec satisfying the dependency: `ReactiveObjC (~> 3.0.0)`.
You have either:
* out-of-date source repos which you can update with `pod repo update`.
* mistyped the name or version.
* not added the source repo that hosts the Podspec to your Podfile.
Note: as of CocoaPods 1.0, `pod repo update` does not happen on `pod install` by default.
提示更新pods
sudo gem install -n /usr/local/bin cocoapods --pre
pod --version ,显示当前版本
1.2.1
最后pod setup,等一段时间,安装成功后就大功告成了
六、CocoaPods使用
在终端中进入(cd命令)你项目所在目录:
$ cd targetName
然后在当前目录下,利用vim创建Podfile,运行:
$ vim podfile
然后在Podfile文件中输入i,编辑 Podfile文件:
platform:ios ,'6.0'
pod'AFNetworking'
单独某个target依赖pod,在1.0中要求必须指定target了
target 'XXXTarget' do
pod'AFNetworking'
pod'Masonry'
end
esc退出,vim环境下,保存退出命令是:
:wq
下面我们就可以利用CocoPods下载ASIHTTPRequest类库了。还是在终端中的当前项目下,运行命令:
$ podinstall
如果 pod update / pod install 命令执行过慢
(首次运行的时候不要)执行pod install还是pod update都卡在了Analyzing dependencies不动原因在于当执行以上两个命令的时候会升级CocoaPods的spec仓库,加一个参数可以省略这一步,然后速度就会提升不少。
加参数的命令如下:
pod install --verbose --no-repo-update
pod update --verbose --no-repo-update