I get the error shown below when attempting to install the rmagick gem. I am on Snowleopard 10.6 using RVM, Ruby 1.9.2-head and Rails 3.05. Responses to similar questions recommended installing ImageMagick, which I successfully did. Other suggested installing the "libmagick9-dev library", however, I can not figure out how to do this.

I'm a new developer, and any assistance or directions to an existing explanation or resource is greatly appreciated. Thanks!

jjdevenuta(opal)$ gem install rmagick
Fetching: rmagick-2.13.1.gem (100%)
Building native extensions.  This could take a while...
ERROR:  Error installing rmagick:
ERROR: Failed to build gem native extension.

/Users/jjdevenuta/.rvm/rubies/ruby-1.9.2-head/bin/ruby extconf.rb
checking for Ruby version >= 1.8.5... yes
checking for gcc... yes
checking for Magick-config... no
Can't install RMagick 2.13.1. Can't find Magick-config in /Users/jjdevenuta/.rvm/gems/ruby-1.9.2-head@rails3/bin:/Users/jjdevenuta/.rvm/gems/ruby-1.9.2-head@global/bin:/Users/jjdevenuta/.rvm/rubies/ruby-1.9.2-head/bin:/Users/jjdevenuta/.rvm/bin:/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/git/bin:/usr/X11/bin

*** 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.

Provided configuration options:
    --with-opt-dir
    --without-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=/Users/jjdevenuta/.rvm/rubies/ruby-1.9.2-head/bin/ruby
link|improve this question

67% accept rate
are you using fink, macports, or homebrew? – Orbit Mar 5 '11 at 4:34
I have macports, but used the binary download for snow leopard on the imagemagick site. I can't find anywhere to download/install from for the libmagick9-dev. – J. Venator Mar 5 '11 at 4:55
If you update the best answer to @Travis R 's answer would be good – defaye May 24 at 11:58
feedback

6 Answers

When building native ruby gems, sometimes you'll get an error containing "ruby extconf.rb". This is often caused by missing dev libraries for the gem you're installing, or even ruby itself. Do you have apt installed on your machine? If not, I'd recommend installing it, it's a quick and easy way to get a lot of dev libraries. If you see people suggest installing "libmagick9-dev", that's an apt package that you'd install with:

$ sudo apt-get install libmagick9-dev

I'm not a big mac guy, but I've heard this mac port of apt works well:

link|improve this answer
I successfully installed apt-get via the fink project as you suggested (Thanks). However, apt-can't seem to find the package. "sudo apt-get install libmagick9-dev Reading Package Lists... Done Building Dependency Tree... Done E: Couldn't find package libmagick9-dev" - I'm at a lost now. – J. Venator Mar 6 '11 at 23:46
1  
I was getting "Can't install RMagick 2.12.2. Can't find Magick-config in..." on Ubuntu 11.04. This fixed it. Thanks! – Govind N Jul 25 '11 at 2:04
I too was getting "Can't find Magick-config" on (Mint) Linux and installing the libmagick++-dev made the problem go away. Thanks! – JamesMcGrath Sep 6 '11 at 23:23
I had this problem and couldn't install libmagick9-dev due to some weird depdendency issues (askubuntu.com/questions/112548/rmagick-install-problem). I was able to install RMagick in the end with apt-get install imagemagick libmagickwand-dev. – mahemoff Mar 13 at 10:55
feedback
up vote 11 down vote accepted

I finally got it working by utilizing a script for ImageMagick installation on github.

magick-installer ( https://github.com/maddox/magick-installer )

It made a fresh install of ImageMagick, and the RMagick 2.12.2 gem then installed perfectly via bundler.

Thanks to Hulihan Applications for confirming that it was most likely a missing library. I tried the suggestion of using apt-get by installing the package downloader from Fink Project. I ran the following command in terminal, but it couldn't find the libmagick9-dev libary.

$ sudo apt-get install libmagick9-dev
$ Password:
$ Reading Package Lists... Done
$ Building Dependency Tree... Done
$ E: Couldn't find package libmagick9-dev

I need to bone up on my UNIX command line skills. The original copy of ImageMagick that I installed from source is still on the machine, but I don't know where exactly or how to remove it. So much to learn...!

link|improve this answer
hooray for magick-installer!!! – captDaylight May 2 at 22:34
feedback

For those who don't want to do the build-from-source approach of the (otherwise excellent installer script by John Maddox, the following worked for me when installing on CentOS 6.2. (Adjust your package manager as necessary).

yum install -y {libwmf,lcms,ghostscript,ImageMagick}{,-devel}
gem install rmagick

Again, this is mainly of interest if you use your distro's package manager and would really prefer to keep it sane.

link|improve this answer
THANK YOU. This was a lifesaver. – Sean H Mar 22 at 6:42
feedback

Things change...maybe this will help someone else:

sudo apt-get install libmagick9-dev used to work. But with a later version of imagemagick I needed:

sudo apt-get install graphicsmagick-libmagick-dev-compat libmagickcore-dev libmagickwand-dev
link|improve this answer
feedback

The new correct way is to install libmagickwand-dev:

sudo apt-get install libmagickwand-dev

Then you should be able to install rmagick no problem.

link|improve this answer
1  
Thank you this worked for me, after installed I just ran bundle install rather than trying to do sudo gem install rmagick – defaye May 24 at 11:57
feedback

In some OS you need to use new libraries: libmagick++4 libmagick++-dev

You can use:

sudo apt-get install libmagick++4 libmagick++-dev

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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