vote up 1 vote down star

I wonder about installing the latest version of Ruby on Ubuntu 9.04. Now I can run through the ./configure and make stuff fine, but what I wonder about: how to avoid conflicts with the packaging system? For example if some other package I install depends on Ruby, wouldn't the package manager install the (outdated) Ruby package and in the worst case overwrite my files?

So I think I need some way to tell Ubuntu that Ruby is in fact already installed?

flag

0% accept rate
So, out of pure curiosity, is there any reason to have the absolute latest version of ruby? I mean it's great to be bleeding edge, but is there actually any features that you need that this newest version has that the older versions don't? If there isn't, it seems a bit unnecessary to upgrade. – thebrokencube Jul 10 at 15:03
1  
I think so - it has unicode support, for one thing, is much faster, and supposedly has fixed some memory leaks of the older versions. I am not a specialist on Ruby, though. However, I am developing on a Mac and I noticed that Ruby 1.9.1 that comes with MacPorts is not compatible with the 1.9.0 version that comes with Ubuntu. Unicode really is the biggie for me, though. I heard that it works in Rails with Ruby 1.8, but I couldn't get any definite info on it. Also I don't have only Rails apps, also standalone Ruby. – Björn Jul 10 at 15:15

3 Answers

vote up 1 vote down

I got the Ruby specific info from this site. You can install most software in a different directory with the --prefix=/path switch. And it is common to install in /opt/ for everyone on your pc, or in $HOME if it is only for you.

For installing in /opt:

$ ./configure –prefix=/opt/ruby
$ make install

If you want to use the /opt installed ruby, edit you ~/.bashrc and add

export PATH=/opt/ruby/bin/:$PATH

If you don't want to have the custom Ruby build as default, you can add this to your ~/.bashrc instead of the former command

function setupruby {
     export PATH=/opt/ruby/bin/:$PATH
}
link|flag
Thanks, very helpful - at least that way I can avoid the conflicts. – Björn Jul 10 at 15:19
vote up 0 vote down

Looking through Synaptic it seems like you don't even have to deal with the Multiverse or third-party repositories. But since sudo apt-get install ruby currently installs an alias to ruby1.8, you should install ruby1.9 explicitly – manually or via the repositories – and create the alias ruby yourself.

You may want to put the binary in /usr/bin since that's where the distribution would put it anyway. Anywhere on your PATH is fine, though.

link|flag
My impression was that in the repositories there is only Ruby 1.9.0, which seems to be incomptible with Ruby 1.9.1. However, 1.9.1 is supposed to be the final release, 1.9.0 is just development version from whenever. – Björn Jul 10 at 15:17
You're right. Looks like you'll have to build it yourself for now. – Nikhil Chelliah Jul 10 at 22:56
vote up 3 vote down

The way I did it was to build it using checkinstall which lets you build a deb package. So I downloaded the Ruby 1.9.1 source, did a "configure" and then "make", did a "checkinstall" and made the package name ruby1.9 so it installs as if it were a new version of ruby 1.9 (as it should).

link|flag

Your Answer

Get an OpenID
or

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