美文网首页
Cocoapods 安装

Cocoapods 安装

作者: 那是什么 | 来源:发表于2016-09-24 15:32 被阅读9次

Cocoapods 安装

1、$sudo gem install cocoa pods

出现问题: ERROR:  Error installing cocoapods:

activesupport requires Ruby version >= 2.2.2.

意思就是 Ruby 环境版本必须大于等于2.2.2 才能安装cocoapods.

2、$rvm list known

如果提示command not found 请先安装rvm

3、$curl -L get.rvm.io | bash -s stable  安装rvm

$rvm install 2.2.2 安装 2.2.2版本ruby

CocoaPods卡在Setting up CocoaPods master repo的解决方案

出现这个的原因一般都是初始化CoCoaPods时,github的代码下载不动造成的。

因为运行pod setup会将https://github.com/CocoaPods/Specs.git的代码下载到~/.cocoapods/repo/master中,因为github下载速度慢,所以慢,(悲伤脸)。

解决方案是将github上的specs仓库镜像换成coding上的镜像或者是oschina上的镜像

最好用ssh的方式clone,需要到官网登录账户去配置ssh key

如果出现下面一样提示失败或者setup不成功,可以手动将代码clone下来

[!] To setup the master specs repo, please run `pod setup`.

git clone https://git.coding.net/CocoaPods/Specs.git ~/.cocoapods/repos/master

pod setup  //务必在手动下载代码后执行一次,执行后 Setup completed

// 再执行

pod install --verbose --no-repo-update //避免去更新了

相关文章

网友评论

      本文标题:Cocoapods 安装

      本文链接:https://www.haomeiwen.com/subject/wkpxyttx.html