cocoapods的安装 遇到 Error installing pods:activesupport requires Ruby version >=2.2.2

1.打开终端

2 移除现有 Ruby 默认源 输入以下指令

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

3.使用新的源 输入以下指令

$gem sources -a https://ruby.taobao.org/

4.验证新源是否替换成功 输入以下指令

$gem sources -l

5.安装 CocoaPods

$sudo gem install cocoa pods



//–––––––––––那么问题来了——没遇到的自动跳过————————————

错误提示1

Error installing cocoapods:  activesupport requires Ruby version >= 2.2.2.

解决方案 :

1、安装 RVM baby 版本管理器

$curl -L get.rvm.io | bash -s stable

//________等安装完成 出现下面这行提示以下___________

In case of problems: https://rvm.io/helpandhttps://twitter.com/rvm_io

执行

$source ~/.bashrc

$source ~/.bash_profile

测试是否安装正常

$rvm -v

//________提示以下___________

rvm 1.27.0 (latest) by Wayne E. Seguin, Michal Papis[https://rvm.io/]

2、用RVM升级Ruby查看当前ruby版本

$ruby -v

$rvm list known

//________提示以下___________

# MRI Rubies

[ruby-]1.8.6[-p420]

[ruby-]1.8.7[-head] # security released on head

[ruby-]1.9.1[-p431]

[ruby-]1.9.2[-p330]

[ruby-]1.9.3[-p551]

[ruby-]2.0.0[-p648]

[ruby-]2.1[.8]

[ruby-]2.2[.4]

[ruby-]2.3[.0]

[ruby-]2.2-headruby-head

# for forks use: rvm install ruby-head---url https://github.com/github/ruby.git --branch 2.2

# JRuby

安装ruby 2.2.2 执行

$rvm install 2.2.2

如果打印:

……  ruby-2.2.2 - #validate archive
    ruby-2.2.2 - #extract
    ruby-2.2.2 - #validate binary
    ruby-2.2.2 - #setup
    ruby-2.2.2 - #gemset created /Users/abc/.rvm/gems/[email protected]
    ruby-2.2.2 - #importing gemset                /Users/abc/.rvm/gemsets/global.gems..............................
    ruby-2.2.2 - #generating global wrappers........
    ruby-2.2.2 - #gemset created /Users/abc/.rvm/gems/ruby-2.2.2
    ruby-2.2.2 - #importing gemsetfile /Users/abc/.rvm/gemsets/default.gems                             evaluated to empty gem list
    ruby-2.2.2 - #generating default wrappers........
    Updating certificates in ‘/etc/openssl/cert.pem‘.
    mkdir: /etc/openssl: Permission denied
    mkdir -p "/etc/openssl" failed, retrying with sudo
    LiuWenqiang password required for ‘mkdir -p /etc/openssl‘:
    and sudo mkdir worked

则说明安装成功了

打印代码:

Done with Command Line Tools (OS X 10.11) for Xcode
Done.
==> /usr/bin/sudo /bin/rm -f /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress
==> Installing the Command Line Tools (expect a GUI popup):
==> /usr/bin/sudo /usr/bin/xcode-select --install
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
Failed during: /usr/bin/sudo /usr/bin/xcode-select --install
Requirements installation failed with status: 1.

4.  继续安装 CocoaPods

$sudo gem install cocoa pods

$sudo gem install -n /usr/local/bin cocoapods

$pod setup

5.  更新 gem

$sudo gem update --system

6.  新建一个项目,名字PodTest

7.    $ cd  项目路径 (中间有空格,)

    cd /Users/lucky/Desktop/PodTest   

8.   建立Podfile(配置文件)

$vim Podfile

键盘输入 i 进入编辑模式,输入

platform :ios, ‘7.0‘

pod ‘MBProgressHUD‘, ‘~> 0.8’ (之前的,我的电脑上已经无效了,报错: [!] The dependency `MBProgressHUD (~> 0.8)` is not used in any concrete target.)

(现在使用:MyApp 替换成自己的项目名)

target ‘MyApp‘ do

pod ‘AFNetworking‘, ‘~> 2.6‘

pod ‘ORStackView‘, ‘~> 3.0‘

end

然后按Esc,并且输入“ :”号进入vim命令模式,然后在冒号后边输入wq

再输入  $pod install

注意:现在打开项目不是点击 PodTest.xodeproj了,而是点击 PodTest.xcworkspace

为了确定AFNetworking是否支持CocoaPods,可以用CocoaPods的搜索功能验证一下。在终端中输入:

$ pod search AFNetworking

如果安装失败

干货1:安装ruby遇到" Installing Homebrew - Brew Command Not Found"命令找不到解决方案:

Check XCode is installed or not.

$gcc --version

$ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

$brew doctor

$brew update.

完成后 执行

$ruby -v

//–––––打印输出–––––––

ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-darwin14]


6 继续安装 CocoaPods

$sudo gem install cocoa pods

//______安装成功提示如下______

Done installing documentation for nap, fourflusher, escape, colored, concurrent-ruby, thread_safe, tzinfo, i18n, activesupport, claide, xcodeproj, molinillo, cocoapods-try, netrc, cocoapods-trunk, cocoapods-stats, cocoapods-search, cocoapods-plugins, cocoapods-downloader, cocoapods-deintegrate, fuzzy_match, cocoapods-core, cocoapods after 21 seconds,23 gems installed

$pod setup

备注:苹果系统升级 OS X EL Capitan 后安装改为:

$sudo gem install -n /usr/local/bin cocoapods

$pod setup

干货2:CocoaPods无限卡在Setting up CocoaPods master repo解决方案:

对于初次使用CocoaPods的同学,即使你不使用pod setup命令,在你初次执行pod install命令时,系统也会自动执行pod setup。而由于网络不稳定的原因,不挂VPN是不可能成功执行pod setup的。(我大天朝的墙啊~~~~)

$ pod repo remove master

$ git clone https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/master

$ pod repo update

7 更新 gem

$sudo gem update --system

8 新建工程,并在终端用 cd 指令到文件夹内

$pod search 第三方

9 新建 Podfile 文件

$ touch Podfile

10 编辑 Podfile 文件,并写入要添加的第三方库(cocoapod1.0.1版本Podfile文件的内容格式要求发生了变化,必须指出指出所用第三方库的target)

platform:ios, ‘8.0‘

#use_frameworks!个别需要用到它,比如reactiveCocoa

target ‘XXXApp‘ do

pod ‘AFNetworking‘, ‘~> 2.3.1‘<-------第三方

end

11 导入第三方库

$pod install --no-repo-update

xcode-select: error: command line tools are already installed, use "Software Update" to install updates
Failed during: /usr/bin/sudo /usr/bin/xcode-select --install
Requirements installation failed with status: 1.

此时查询Xcode,切换到另一个环境:

$ sudo xcode-select --switch /Library/Developer/CommandLineTools/
Password:
$ git
usage: git [--version] [--help] [-C <path>] [-c name=value]
[--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
[-p | --paginate | --no-pager] [--no-replace-objects] [--bare]
[--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
<command> [<args>]

ERROR: Error installing cocoapods:
activesupport requires Ruby version >= 2.2.2.
localhost:~ zzz$ $curl -L get.rvm.io | bash -s stable
-bash: -L: command not found
localhost:~ zzz$

解决方法:

ruby -e "$(wget -qO - ‘https://raw.github.com/mxcl/homebrew/go‘)"

$ sudo xcode-select --switch /Library/Developer/CommandLineTools/

Password: (输入电脑权限密码)

$ git

usage: git [--version] [--help] [-C <path>] [-c name=value]

[--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]

[-p | --paginate | --no-pager] [--no-replace-objects] [--bare]

[--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]

<command> [<args>]

时间: 2024-12-25 05:48:58

cocoapods的安装 遇到 Error installing pods:activesupport requires Ruby version >=2.2.2的相关文章

iOS的CocoaPods(activesupport requires Ruby version &gt;= 2.2.2)

如果你在安装遇到这个问题 activesupport requires Ruby version >= 2.2.2,那么这里可以帮助你(lasted version) 如果你是通过 http://www.cnblogs.com/pruple/p/5345084.html 安装的,在安装cocoapods遇到这个错,是因为ruby版本太低原因 ruby -v可查看当前版本,目前最新2.3.0,安装2.2.2版本及以上版本就可 1.关于更新ruby链接:http://blog.csdn.net/li

cocoapods的安装(这真是一个神奇的东西,每次安装的方法都不一样,而且很容易出现各种各样的错误)

文章开始之前,建议安装一个显示网速的插件,不然你不知道到底有没有下载,也让生活有一点盼头 1.因为众所周知的原因(我dang的行为真的是让人失望),先更换一下ruby镜像源 $ gem sources --remove https://rubygems.org/ $ gem sources -a https://ruby.taobao.org/ $ gem sources -l //这三步一般都不会出错 2.开始安装cocoapods $ sudo gem install -n /usr/loc

使用cocoapods install友盟时报错Error installing UMengAnalytics

报错: [!] /usr/bin/unzip /Users/soindy/Documents/SmartThermo/ios/SmartThermo/Pods/UMengAnalytics/file.zip -d /Users/soindy/Documents/SmartThermo/ios/SmartThermo/Pods/UMengAnalytics Archive:  /Users/soindy/Documents/SmartThermo/ios/SmartThermo/Pods/UMen

CocoaPods 2015安装和使用说明

cocoapods 简介: CocoaPods是OS X和iOS下的一个第三类库管理工具,通过CocoaPods工具我们可以为项目添加被称为“Pods”的依赖库(这些类库必须是CocoaPods本身所支持的),并且可以轻松管理其版本. Cocoapods意义体现在两个方面.第一,在引入第三方库时它可以自动为我们完成各种各样的配置,包括配置编译阶段.连接器选项.甚至是ARC环境下的-fno-objc-arc配置等.第二,使用CocoaPods可以很方便地查找新的第三方库,这些类库是比较“标准的”,

Mac下CocoaPods的安装

安装需要使用Mac下自带ruby的gem命令来安装 要查看ruby的版本,打开终端,输入ruby -v即可看到 首先去GitHub上下载CocoaPods 终端输入命令:sudo gem install cocoapods 按提示输入电脑密码 初次安装提示了一个错误: ERROR:  Error installing cocoapods: cocoapods requires cocoapods-core (= 0.31.1, runtime) 然后我使用sudo gem update --sy

OS10.11系统下 安装cocoapods 以及 安装cocoapods-xcode-plugin-master插件来加载三方框架

OS10.11系统下 安装cocoapods 以及 安装cocoapods-xcode-plugin-master插件来加载三方框架A.安装cocoapods:1.sudo gem update --system 更新gem(1.1 sudo gem uninstall cocoapods 该情况看是否需要卸载cocoapods 一般不必使用该命令) 2.gem source -l http://rubygems.org/ 查看安装ruby环境的路径 3.gem source -a http:/

CocoaPods的安装使用和常见问题

原文:http://www.jianshu.com/p/6e5c0f78200a 一.什么是CocoaPods CocoaPods是iOS项目的依赖管理工具,该项目源码在Github上管理.开发iOS项目不可避免地要使用第三方开源库,CocoaPods的出现使得我们可以节省设置和第三方开源库的时间.在使用CocoaPods之前,开发项目需要用到第三方开源库的时候,我们需要1.把开源库的源代码复制到项目中2.添加一些依赖框架和动态库3.设置-ObjC,-fno-objc-arc等参数4.管理他们的

iOS 开发之Cocoapods的使用及制作私有pods

一.安装CocoaPods 第一步:升级ruby环境 更新Ruby环境 如果出现 更新ruby错误 然后就可以进行Cocoapods的安装了, 第二步:更换淘宝的RubyGems镜像代替官方版本, 移除官方的镜像 更换成淘宝镜像 验证是否更换成功 第三步:安装Cocoapods 如果你的是版本是10.11以下用这个命令 安装Cocoapods 如果你的是版本是10.11以上用这个命令 安装Cocoapods 然后执行 将Cocoapods Specs repository复制到你电脑的~/.co

Cocoapods的安装和使用

一.Cocoapods的安装 第一步:打开终端 第二步:修改ruby镜像引用 gem source --remove https://rubygems.org/ gem sources -a http://ruby.taobao.org/ 完成后用命令行查看ruby镜像是否是taobao,用命令行: gem sources -l 返回信息为: *** CURRENT SOURCES *** http://ruby.taobao.org/ 即为成功. 第三步:安装cocoapods sudo ge