Hi. I have ImageMagick and RMagick successfully installed: #gem list | grep -i rmagick rmagick (2.3.0) Unfourtunately, my RoR project will still not start. I always see the following error in my apache error logs: [error] /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'' [error] no such file to load -- RMagick [error] ( [error] MissingSourceFile [error] ) [error] \tfrom /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'' .... Any ideas? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hinsen Gi
2008-Apr-19 15:49 UTC
Re: RMagick installed BUT "no such file to load -- RMagick"
It even works if i try to load RMagick in the console, but not if i access my application via browser! <ror-project># script/console Loading development environment (Rails 2.0.2) ******************************************************************* * config.breakpoint_server has been deprecated and has no effect. * *******************************************************************>> require ''RMagick''=> []>>-- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
David Kleman
2008-Dec-21 23:09 UTC
Re: RMagick installed BUT "no such file to load -- RMagick"
In my case the reason was no capitzalized R and M, which worked fine on windows but not on my new machine. So not the same issue as OP -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Cedric de La Beaujardiere
2011-May-19 23:20 UTC
Re: RMagick installed BUT "no such file to load -- RMagick"
I had the same problem, and found the solution here, by Peturrr: http://ubuntuforums.org/showthread.php?t=306216 --------------- Do _not_ use: sudo gem install rmagick Peturrr solved this by uninstalling the gem and installing the precompiled rmagick ubuntu package from the universe repos.: sudo gem uninstall rmagick sudo apt-get install librmagick-ruby --------------- This solution solved my problem as well. --Cedric dLB -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.