Ruby

From 太極
Jump to navigation Jump to search

Installation on Ubuntu

http://stackoverflow.com/questions/26595620/how-to-install-ruby-2-1-4-on-ubuntu-14-04 mentioned a couple of methods.

sudo apt-get update
sudo apt-get install build-essential make curl
\curl -L https://get.rvm.io | bash -s stable
source ~/.bash_profile
rvm install ruby-2.1.4

The last step will take a while since no binary rubies were available and it has to compile Ruby from source.

Then check ruby versions installed and in use

rvm list
rvm use --default ruby-2.1.4

Documentation

https://www.ruby-lang.org/en/documentation/