使用rvm在Mac中安装ruby和rails_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > 使用rvm在Mac中安装ruby和rails

使用rvm在Mac中安装ruby和rails

 2012/4/5 13:25:37  jsntghf  程序员俱乐部  我要评论(0)
  • 摘要:1、安装Git如果没有安装Git的话,可以去http://code.google.com/p/git-osx-installer/进行下载安装2、安装RVM执行以下命令即可安装:bash<<(curl-shttps://rvm.beginrescueend.com/install/rvm)为了可以在shell中使用,需要在.bash_profile中输入以下命令:cd~/sudovim.bash_profile#在.bash_profile中加入[[-s"$HOME/
  • 标签:使用 rails Ruby 安装 Mac RVM

1、安装Git

?

如果没有安装Git的话,可以去http://code.google.com/p/git-osx-installer/进行下载安装

?

2、安装RVM

?

执行以下命令即可安装:

?

bash < <(curl -s https://rvm.beginrescueend.com/install/rvm) 

?

为了可以在shell中使用,需要在.bash_profile中输入以下命令:

?

cd ~/

sudo vim .bash_profile
 
#在.bash_profile中加入
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"

?

然后退出终端,重新开启

?

3、安装Ruby

?

使用以下命令,可以看到rvm可以支持安装的内容:

rvm list known

?

使用下面的命令安装ruby1.9.2:

?

rvm install 1.9.2

?

然后使用下面的命令,让系统使用新的ruby:

?

rvm use 1.9.2

?

当你重启终端后,你会发现又恢复成了1.8.7了,可以使用下面的命令,让系统默认使用1.9.2:

?

rvm --default use 1.9.2

?

4、安装Rails

?

gem install rails

?

发表评论
用户名: 匿名