[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Can't find ruby after installation

Nirav

1/5/2006 8:04:00 PM

I skipped ruby selection while installing mandrake 10.1 with an
intention of building the latest version (1.8.3).
After untarring the download in /usr/local/src, I followed README (1.
../configure 2. make 3. and optional make test (successful)).
"which ruby" returns ruby: but I can't find ruby in /usr/local/bin or
/usr/local/lib.

Where is it?

Thanks in advance.

4 Answers

jason r tibbetts

1/5/2006 8:20:00 PM

0

Nirav wrote:
> I skipped ruby selection while installing mandrake 10.1 with an
> intention of building the latest version (1.8.3).
> After untarring the download in /usr/local/src, I followed README (1.
> ../configure 2. make 3. and optional make test (successful)).
> "which ruby" returns ruby: but I can't find ruby in /usr/local/bin or
> /usr/local/lib.
>
> Where is it?

It's probably in your current working directory (i.e. from wherever you
called 'which ruby'). To make sure, take a look at the Makefile that was
generated by configure. Search for the 'prefix' variable about a dozen
lines from the top.



Zach

1/5/2006 8:22:00 PM

0


jason r tibbetts wrote:

> Nirav wrote:
>
>> I skipped ruby selection while installing mandrake 10.1 with an
>> intention of building the latest version (1.8.3).
>> After untarring the download in /usr/local/src, I followed README (1.
>> ../configure 2. make 3. and optional make test (successful)).
>> "which ruby" returns ruby: but I can't find ruby in /usr/local/bin or
>> /usr/local/lib.
>>
>> Where is it?
>
>
> It's probably in your current working directory (i.e. from wherever
> you called 'which ruby'). To make sure, take a look at the Makefile
> that was generated by configure. Search for the 'prefix' variable
> about a dozen lines from the top.
>
>
>
During the .configure you can pass the parameters to set that at runtime
too, I'm not sure if it was as short as --PREFIX=myPath or not but it
was that simple.

-Zach


Marius Friis

1/5/2006 8:26:00 PM

0

You might need to run 'make install' as root to actually install it,
right now you have just
compiled it.


On 5. jan. 2006, at 21.07, Nirav wrote:

> I skipped ruby selection while installing mandrake 10.1 with an
> intention of building the latest version (1.8.3).
> After untarring the download in /usr/local/src, I followed README (1.
> ../configure 2. make 3. and optional make test (successful)).
> "which ruby" returns ruby: but I can't find ruby in /usr/local/bin or
> /usr/local/lib.
>
> Where is it?
>
> Thanks in advance.
>
>
>

--
Sir Bedevere: ...and that, my liege, is how we know the Earth to be
banana shaped.
King Arthur: This new learning amazes me, Sir Bedevere. Explain again
how sheep's bladders may be employed to prevent earthquakes.




Nirav

1/5/2006 9:11:00 PM

0

Strange!! last time I kept the distro version, and
compiled/build/install 1.8.3 in /usr space using same instructions in
README. It worked then!

Is it possible that configuration script assumes that user will always
keep the linux distro version, but unable to find that in this case and
got confused?

Anyways, thank you all, I will try the options you've provided.