Mac 下安装Ruby环境

步骤1 - 安装 RVM

RVM 是干什么的这里就不解释了,后面你将会慢慢搞明白。

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

期间可能会问你sudo管理员密码,这里可能需要等待一段时间后就可以成功安装好 RVM。

案例信息如下:

lihuifengdeMacBook-Pro:~ lihuifeng$ curl -L https://get.rvm.io | bash -s stable

% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   184  100   184    0     0      8      0  0:00:23  0:00:21  0:00:02     8
100 22817  100 22817    0     0    523      0  0:00:43  0:00:43 --:--:--  1056
Downloading https://github.com/wayneeseguin/rvm/archive/1.26.10.tar.gz
Downloading https://github.com/wayneeseguin/rvm/releases/download/1.26.10/1.26.10.tar.gz.asc
Found PGP signature at: ‘https://github.com/wayneeseguin/rvm/releases/download/1.26.10/1.26.10.tar.gz.asc‘,
but no GPG software exists to validate it, skipping.

Upgrading the RVM installation in /Users/lihuifeng/.rvm/
    RVM PATH line found in /Users/lihuifeng/.profile /Users/lihuifeng/.bashrc /Users/lihuifeng/.zshrc.
    RVM sourcing line found in /Users/lihuifeng/.bash_profile /Users/lihuifeng/.zlogin.
Upgrade of RVM in /Users/lihuifeng/.rvm/ is complete.

# lihuifeng,
#
#   Thank you for using RVM!
#   We sincerely hope that RVM helps to make your life easier and more enjoyable!!!
#
# ~Wayne, Michal & team.

In case of problems: http://rvm.io/help and https://twitter.com/rvm_io

Upgrade Notes:

* No new notes to display.

--这里就表示已经成功安装了--

然后,载入 RVM 环境

    $ source ~/.rvm/scripts/rvm

检查一下是否安装正确 :输入命令   rvm -v ,如果正确会列出RVM版本 如下所示:

    $ rvm -v
A RVM version 1.26.10 (latest) is installed yet 1.25.28 (stable) is loaded.
Please do one of the following:
  * ‘rvm reload‘
  * open a new shell
  * ‘echo rvm_auto_reload_flag=1 >> ~/.rvmrc‘ # for auto reload with msg.
  * ‘echo rvm_auto_reload_flag=2 >> ~/.rvmrc‘ # for silent auto reload.

步骤2 - 用 RVM 安装 Ruby 环境

注意:此处用2.0.0安装失败,用2.1.4

输入命令  $ rvm install 2.0.0

    $ rvm install 2.0.0

同样继续等待漫长的下载,编译过程,完成以后就安装好了。

A RVM version 1.26.10 (latest) is installed yet 1.25.28 (stable) is loaded.
Please do one of the following:
  * ‘rvm reload‘
  * open a new shell
  * ‘echo rvm_auto_reload_flag=1 >> ~/.rvmrc‘ # for auto reload with msg.
  * ‘echo rvm_auto_reload_flag=2 >> ~/.rvmrc‘ # for silent auto reload.

步骤3 - 设置 Ruby 版本

RVM 装好以后,需要执行下面的命令将指定版本的 Ruby 设置为系统默认版本

    $ rvm 2.0.0 --default

同样,也可以用其他版本号,前提是你有用 rvm install 安装过那个版本

测试是否正确

 lihuifengdeMacBook-Pro:~ lihuifeng$ ruby -v
ruby 2.0.0p481 (2014-05-08 revision 45883) [x86_64-darwin13.1.0]
lihuifengdeMacBook-Pro:~ lihuifeng$ gem -v
2.2.2

这有可能是因为Ruby的默认源使用的是cocoapods.org,国内访问这个网址有时候会有问题,网上的一种解决方案是将远替换成淘宝的,替换方式如下:
     $gem source -r https://rubygems.org/
    $ gem source -a https://ruby.taobao.org

lihuifengdeMacBook-Pro:~ lihuifeng$ gem source -r https://rubygems.org/
https://rubygems.org/ removed from sources
lihuifengdeMacBook-Pro:~ lihuifeng$ gem source -a https://ruby.taobao.org
https://ruby.taobao.org added to sources

要想验证是否替换成功了,可以执行:

    $ gem sources -l

正常的输出结果:

lihuifengdeMacBook-Pro:~ lihuifeng$ gem sources -l
*** CURRENT SOURCES ***

https://ruby.taobao.org

这里就表示已经把Ruby环境成功的安装到了Mac 上了。

成功安装后,第一次使用pod明令会进行一次初始化,Setting up CocoaPods master repo这行文字显示出来之后要等好久,不过也就第一次会出现,以后都还好

时间: 2024-12-27 20:48:01

Mac 下安装Ruby环境的相关文章

如何在Mac 环境下安装Ruby环境

对于新入门的开发者,如何安装 Ruby和Ruby Gems 的运行环境可能会是个问题,本页主要介绍如何用一条靠谱的路子快速安装 Ruby 开发环境.此安装方法同样适用于产品环境! 系统需求 首先确定操作系统环境,不建议在 Windows 上面搞,所以你需要用: Mac OS X 任意 Linux 发行版本(Ubuntu,CentOS, Redhat, ArchLinux ...) 强烈新手使用 Ubuntu 省掉不必要的麻烦! 以下代码区域,带有 $ 打头的表示需要在控制台(终端)下面执行(不包

在Mac上安装ruby环境

CocoaPods应该是iOS最常用最有名的类库管理工具了,上述两个烦人的问题,通过cocoaPods,只需要一行命令就可以完全解决,当然前提是你必须正确设置它.重要的是,绝大部分有名的开源类库,都支持CocoaPods.所以,作为iOS程序员的我们,掌握CocoaPods的使用是必不可少的基本技能了. =========第一步  配置ruby环境============= http://www.cnblogs.com/daguo/p/4097263.html 以下代码区域,带有 $ 打头的表示

mac下的ruby环境

在mac下安装/更新ruby环境确实是挺繁琐的. 首先mac os x是自带ruby环境的, 我们通过rvm(ruby version manager)来对ruby的版本进行管理 只要执行下面2句就行了: $ gpg2 --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 $ \curl -sSL https://get.rvm.io | bash -s stable 按照一些以

mac下升级ruby环境版本

在ios开发中会经常使用到cocoapods来管理第三方框架,在安装cocoapods的时候会涉及到ruby环境,有时候会因为版本过低会导致安装失败,本文主要讲一下如何升级ruby环境 安装rvm,rvm是可以让你拥有很多ruby版本的一个工具,具体的可以去了解一下(以下各个步骤均在terminal中实现) $ curl -L https://get.rvm.io | bash -s stable 1 期间可能会问你sudo管理员密码,这里可能需要等待一段时间后就可以成功安装好 RVM 载入rv

mac下安装libpng环境

用go写一个爬虫工具时需要使用一个go的库,而这个库有需要使用libpng库,不然编译就会提示说 png.h找不到等之类的信息,于是想到应该和windows一样需要安装gcc环境,然后让gcc里安装libpng这个库, 解决办法: 终端里输入 'gcc -v' 发现mac默认是有gcc环境的,只是没有libpng这个库,于是依照网上的方法,先安装一个叫做brew的环境,直接在终端输入: ruby -e "$(curl -fsSL https://raw.githubusercontent.com

mac 下安装 lua环境

1,安装命令 首先从mac AppStore 上面安装brew. brew只能当前用户使用. $ brew install lua --with-completion ==> Downloading http://www.lua.org/ftp/lua-5.2.3.tar.gz ######################################################################## 100.0% ==> Downloading http://luajit

mac下安装npm环境

使用nvm进行管理: 1.打开 https://github.com/creationix/nvm, 找到README.md中的: Installation Install script To install or update nvm, you can use the install script using cURL: curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | bash or

mac下安装开发环境

1.安装JDK 打开网页,进入jdk官网下:http://www.oracle.com/technetwork/java/javase/downloads/index.html 下载后,进入finder-下载点击安装 全程下一步 打开终端找到jdk: cd /Library/Java/JavaVirtualMachines

Mac下安装cocos2d-x环境

安装后xcode之后,下载cocos2dx压缩包,解压 通过中断cd到cocos2dx文件夹内 输入下行命令 sudo ./install-templates-xcode.sh 执行成功后打开xcode即能够看到已经能够创建cocos2dx项目 但对于2.0以上的版本号,则须要另外的方法 还是须要打开终端 第一步,首先 cd cocos2d-x-2.2.1/tools/project-creator/ 第二步, ./create_project.py -project HelloWorld -p