I've been googling for a while but couldn't find anything that works.

Basically, when I put gem 'rmagick' in my gemfile and run bundle install, I get the following error message:


Installing rmagick (2.13.1) with native extensions C:/Ruby192/lib/ruby/site_ruby/1.9.1/rubygems/installer.rb:551:in `rescue in block in buil d_extensions': ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError)

C:/Ruby192/bin/ruby.exe extconf.rb checking for Ruby version >= 1.8.5... yes Invalid drive specification. Unable to get ImageMagick version * extconf.rb failed * Could not create Makefile due to some reason, probably lack of necessary libraries and/or headers. Check the mkmf.log file for more details. You may need configuration options.


I went to the RMagick site and installed the windows binary gem. but it still doesn't work.

What should I do?

Edit: I need rmagick for simple_captcha

link|improve this question
possible duplicate of Ruby on Rails RMagick on Windows 7 – luvieere Sep 8 '11 at 9:52
feedback

2 Answers

Alright finally got it to work. This is what ended up helping me get it right.

http://www.waydotnet.com/blog/2010/02/rmagick-on-ruby-1-9-1-i386-mingw32-work-d/

Funny thing is, I ended up giving up simple_captcha because of other problems. Using third party plugins involves much bigger headaches than I thought...

link|improve this answer
feedback

You need ImageMagick installed first.

link|improve this answer
Thx for the reply. I thought I had imagemagick installed correctly but that didn't turn out to be the case. It took a lot more work after getting imagemagick to make it work, but that was the first required step. – Max Jun 24 '11 at 5:16
ImageMagick is a pain to install. Some OSs have packages that make it easier. Just did an Ubantu install no problem. Mac was no problem. CentOS was a bit more complex. I've never done a windows setup but I can understand how it could be difficult. – natedavisolds Jun 24 '11 at 5:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.