Information in this page is outdated. Last update was made on 09 December 2016.
Install RVM (Ruby Version manager) in Ubuntu 14.04
Table of contents
Ruby Version Manager (RVM) is a tool that managers Ruby application environments and enables switching between them. This is more of a personal note, as I always end up re-searching about this.
Install via PPA
-
Add RVM PPA.
sudo apt-add-repository ppa:rael-gc/rvm
-
Update system.
sudo apt-get update
Install RVM, Ruby
-
Install RVM.
sudo apt-get install rvm
-
Restart your terminal, or logout/login.
-
Install Ruby.
rvm install ruby
That’s it.