Is there any way, on Ubuntu 9.04, to install ruby 1.8 as ruby1.8 (or get rid of it altogether) and have ruby 1.9 be the default ruby?

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

I'm not really sure, but maybe this can help

update-alternatives --config ruby
link|improve this answer
3  
thanks, didn't work out of the box but searching for update-alternatives ruby brought up krnjevic.com/wp/?p=209 which has a howto – Martin DeMello Dec 12 '09 at 9:54
cool :) happy coding – just_a_dude Dec 12 '09 at 10:37
The correct way of dealing with this is to use RVM, as linked by henry74. Messing with Ubuntu directly is strongly discouraged, as it will increase your headaches later. – Amin Ariana May 21 at 21:37
feedback

Martin - Take a look at the following link: http://ryanbigg.com/2010/12/ubuntu-ruby-rvm-rails-and-you/

This is where installation of ruby is heading for ubuntu servers. This should allow you to not only switch to a ruby version when needed, but also keep gems separated based on ruby versions, etc. Good luck.

Cheers, Henry

link|improve this answer
thanks - i have indeed switched to rvm and find it very pleasant to work with. – Martin DeMello Jun 4 '11 at 16:03
@henry74: Thanks for the recommendation & link! :) – Ryan Bigg Jul 28 '11 at 22:57
feedback

try

sudo apt-get install ruby1.9 rubygems1.9

or try building from source. this worked for me on ubuntu 9.04 and after a restart 1.9 was the standard ruby

link|improve this answer
i got it working via update-alternatives, as described here: krnjevic.com/wp/?p=209 – Martin DeMello Dec 13 '09 at 13:04
1  
-1. This seems like a cargo-cult administration, huh? "do something, reboot, pray it works, I don't know how" - that makes the overall entropy raise. – Wojciech Kaczmarek Dec 15 '09 at 0:31
I don't see what you're getting at - I installed and rebooted. You can install ruby1.9 either from the source, or via repository. This was the expected behaviour. I didn't sit down and mumble voodoo chants while feverishly typing in commands I thought looked pretty. – user214028 Dec 15 '09 at 11:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.