2025年 4月5日(土) 06:48 JST

Installing RVM

  • 2011年 2月25日(金) 22:30 JST
  • 投稿者:
  • 表示回数 117

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

 

mkdir -p ~/.rvm/src/ && cd ~/.rvm/src && rm -rf ./rvm/ && git clone --depth 1 git://github.com/wayneeseguin/rvm.git && cd rvm && ./install
 
The first time you install RVM, you must put the following line into your ~/.bash_profile at the very end, after all path loads etc:
 
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"  # This loads RVM into a shell session.
 
 

 

Doing so ensures rvm is loaded as a function (versus as a binary), ensuring commands such as rvm use work as expected. Please note that you can confirm this worked correctly by opening a new shell and running:
 
$ type rvm | head -1
If this was performed correctly, you should see:
 
rvm is a function
 
 source ~/.rvm/scripts/rvm