iseesea 发表于 2013-1-15 14:05:03

ubuntu安装RVM

全新的系统安装配置RVM

1,安装GIT,curl,bison(aptitude 直接安装)

2,运行

$ bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-head )

3,

$ mkdir -p ~/.rvm/src/ && cd ~/.rvm/src && rm -rf ./rvm/ && git clone --depth 1 git://github.com/wayneeseguin/rvm.git && cd rvm && ./install

下载,安装

4,因为我用的是Ubuntu的10.10所以,在

$ vi ~/.bashrc

加入以下信息,到文件中。

[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"# This loads RVM into a shell session.

5,关闭命令行,重新打开一个,输入 type rvm | head -1
如果结果正确的话就会 显示

rvm is a function

基本安装完毕。。

最后加入path:

$source ~/.rvm/scripts/rvm

6,但是之后运行 rvm install 1.9.2-head的时候就会出错:
ruby-1.9.2-head - #fetchingDownloading source from http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_2.Error running 'svn checkout -qhttp://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_2 /home/allen/.rvm/repos/ruby-1.9.2-head', please read /home/allen/.rvm/log/ruby-1.9.2-head/svn.checkout.logThere has been an error while trying to fetch / update the source.          Halting the installation.There has been an error fetching the ruby interpreter. Halting the installation.
原来我没装svn。。。。囧。。。。

$ sudo aptitude install subversion

ok 了,,,
页: [1]
查看完整版本: ubuntu安装RVM