[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

How do I install both Ruby 1.8 and Ruby 1.9?

dflanagan

2/6/2007 6:42:00 AM

Hi,

I have Ruby 1.8 installed (on Linux) in /usr/local/bin/.

I want to have a copy of a Ruby 1.9 snapshot around too, so I can try
out stuff out with that.

But I can't figure out how to install it in a different location.
I've altered the "prefix" variable in the Makefile, but when I do a
"make install", it just overwrites my Ruby 1.8 installation in /usr/
local/bin.

I imagine there is a simple solution to this. Can anyone share it?

David Flanagan

1 Answer

Vladimir Konrad

2/7/2007 8:57:00 PM

0


run

/configure --help

to see all the options

usually, i do:

configure --prefix=/usr/local/opt/ruby/1.9 --program-suffix=.yarv

and then symlink what is in /usr/local/opt/ruby/1.9/bin to
/usr/local/bin .

hope this helps,

vlad


--
Posted via http://www.ruby-....