Ruby: Difference between revisions
Jump to navigation
Jump to search
(Created page with "= Installation on Ubuntu = * https://www.ruby-lang.org/en/documentation/installation/ * apt-get install ruby will install v1.8 or v1.9. * I tried to install from the source (v...") |
|||
Line 8: | Line 8: | ||
$ sudo make install | $ sudo make install | ||
</pre> | </pre> | ||
* Other installation methods include rbenv. See [http://stackoverflow.com/questions/26595620/how-to-install-ruby-2-1-4-on-ubuntu-14-04 this stackoverflow post]. | |||
= Documentation = | |||
https://www.ruby-lang.org/en/documentation/ |
Revision as of 14:33, 13 March 2015
Installation on Ubuntu
- https://www.ruby-lang.org/en/documentation/installation/
- apt-get install ruby will install v1.8 or v1.9.
- I tried to install from the source (v2.2.1) on Ubuntu 14.04.
$ ./configure $ make $ sudo make install
- Other installation methods include rbenv. See this stackoverflow post.