Scott Pn wrote: > Is there any special way to set up rmagick on windows, I installed the > gem, and i install imagemagick, but it says it can't find a CORE_.. .dll > file. Can someone give me a run down on how to do it on windows.
I have faced the same problem while installing the Rmagick. To solve this issue just copy the CORE_.. .dll or all the *.dll files from the ImageMagick.... Installed path which would be preferably in C:/Program files/Imagemagick.. and paste it in C:/windows/system32. Once you done with this above flow try this. irb > require 'rubygems' true irb > require 'rmagick' true Which shows the rmagick was installed perfectly. -- 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

