[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

rmagick install problem

Frioffol Friofool

11/21/2006 6:56:00 PM

hi,

i got the following message when i try to install rmagick :

/usr/bin/ruby -I /home/user/appli/tmp/RMagick-1.14.1/./lib -I
/home/user/appli/tmp/RMagick-1.14.1/./ext/RMagick OrigCoordSys.rb
/home/user/appli/tmp/RMagick-1.14.1/./ext/RMagick/RMagick.so:
libMagick-10.4.0.so.0: cannot open shared object file: No such file or
directory - /home/user/appli/tmp/RMagick-1.14.1/./ext/RMagick/RMagick.so
(LoadError)

my imageMagick lib are in /usr/local/lib and i specify that in my
LD_LIBRARY_PATH but i still have an error....

any idea to help me ?

THX


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

2 Answers

Paul Lutus

11/21/2006 9:04:00 PM

0

Frioffol Friofool wrote:

> hi,
>
> i got the following message when i try to install rmagick :
>
> /usr/bin/ruby -I /home/user/appli/tmp/RMagick-1.14.1/./lib -I
> /home/user/appli/tmp/RMagick-1.14.1/./ext/RMagick OrigCoordSys.rb
> /home/user/appli/tmp/RMagick-1.14.1/./ext/RMagick/RMagick.so:
> libMagick-10.4.0.so.0: cannot open shared object file: No such file or
> directory - /home/user/appli/tmp/RMagick-1.14.1/./ext/RMagick/RMagick.so
> (LoadError)
>
> my imageMagick lib are in /usr/local/lib and i specify that in my
> LD_LIBRARY_PATH but i still have an error....
>
> any idea to help me ?

Ruby is telling you that a required library file is not present
(libMagick-10.4.0.so.0). Remedy: check to see that the library file is
present on your system and in your library search path. If it is not
present and/or accessible, get it, put it in place and try again.

--
Paul Lutus
http://www.ara...

Tim Hunter

11/25/2006 5:18:00 AM

0

Paul Lutus wrote:
> Frioffol Friofool wrote:
>
>
>> hi,
>>
>> i got the following message when i try to install rmagick :
>>
>> /usr/bin/ruby -I /home/user/appli/tmp/RMagick-1.14.1/./lib -I
>> /home/user/appli/tmp/RMagick-1.14.1/./ext/RMagick OrigCoordSys.rb
>> /home/user/appli/tmp/RMagick-1.14.1/./ext/RMagick/RMagick.so:
>> libMagick-10.4.0.so.0: cannot open shared object file: No such file or
>> directory - /home/user/appli/tmp/RMagick-1.14.1/./ext/RMagick/RMagick.so
>> (LoadError)
>>
>> my imageMagick lib are in /usr/local/lib and i specify that in my
>> LD_LIBRARY_PATH but i still have an error....
>>
>> any idea to help me ?
>>
>
> Ruby is telling you that a required library file is not present
> (libMagick-10.4.0.so.0). Remedy: check to see that the library file is
> present on your system and in your library search path. If it is not
> present and/or accessible, get it, put it in place and try again.
>
>
For future questioners who find this thread via a search engine, this
particular issue is addressed here:
http://rmagick.rubyforge.org/install-faq.html....