Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am already completely desperate - I spent whole day with trying to install rmagick gem to Mac OS X Lion, but literally it's a tragedy. I saw many similar threads on Google, but nothing has helped me.

I tried completely uninstall imagemagick via brew and install it again (this is working well) and then to install the rmagick, but every time when I try to install this gem, I receive this error:

Building native extensions.  This could take a while...
ERROR:  Error installing rmagick:
    ERROR: Failed to build gem native extension.

        /Users/adam/.rvm/rubies/ruby-1.9.3-p327/bin/ruby extconf.rb
checking for Ruby version >= 1.8.5... yes
extconf.rb:128: Use RbConfig instead of obsolete and deprecated Config.
checking for clang... yes
checking for Magick-config... yes
checking for ImageMagick version >= 6.4.9... yes
checking for HDRI disabled version of ImageMagick... yes
checking for stdint.h... yes
checking for sys/types.h... yes
checking for wand/MagickWand.h... yes
checking for InitializeMagick() in -lMagickCore... no
checking for InitializeMagick() in -lMagick... no
checking for InitializeMagick() in -lMagick++... no
Can't install RMagick 2.13.1. Can't find the ImageMagick library or one of the dependent libraries. Check the mkmf.log file for more detailed information.

*** 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
    --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/adam/.rvm/rubies/ruby-1.9.3-p327/bin/ruby
    --with-MagickCorelib
    --without-MagickCorelib
    --with-Magicklib
    --without-Magicklib
    --with-Magick++lib
    --without-Magick++lib


Gem files will remain installed in /Users/adam/.rvm/gems/ruby-1.9.3-p327/gems/rmagick-2.13.1 for inspection.
Results logged to /Users/adam/.rvm/gems/ruby-1.9.3-p327/gems/rmagick-2.13.1/ext/RMagick/gem_make.out

Doesn't matter if I will install the gem through Gemfile or through Terminal, in both cases I get the same error output.

This is the version of imagemagick: imagemagick-6.8.0-10.

Could you give me please some tips or advance, where could be the issue? Thank you so much!

share|improve this question
Did you Check the mkmf.log file for more details? – sosborn Dec 20 '12 at 0:50
To be honest, I don't know where to find this file (I've tried to search it through spootlight, but I've got lot of results). – user984621 Dec 20 '12 at 0:59
Do you have the imagemagick development headers installed? – Linuxios Dec 20 '12 at 1:05
Linuxios - sorry, but how can I found out it? – user984621 Dec 20 '12 at 1:30

5 Answers

up vote 44 down vote accepted

rmagick has a problem working with imagemagick (>= 6.8.0-10) from homebrew. You have to manually symbol link some dylib to make it work:

$ cd "`Magick-config --prefix`lib"
$ ln -s libMagick++-Q16.7.dylib   libMagick++.dylib
$ ln -s libMagickCore-Q16.7.dylib libMagickCore.dylib
$ ln -s libMagickWand-Q16.7.dylib libMagickWand.dylib

After that gem install rmagick should work.

Check the discussion about this in homebrew/issues/16625

Update: Thanks @faraz for the nice one-liner command:

cd "`Magick-config --prefix`/lib"; ln -s libMagick++-Q8.7.dylib libMagick++.dylib; ln -s libMagickCore-Q8.7.dylib libMagickCore.dylib; ln -s libMagickWand-Q8.7.dylib libMagickWand.dylib
share|improve this answer
This is the correct answer for installing ImageMagick 6.8.10 using Homebrew and for installing RMagick 2.13.1. My environment uses RVM with Ruby 1.9.3-p327. Citation: coderwall.com/p/wnomjg – scarver2 Jan 14 at 21:40
1  
For 8-bit quantum depth: cd "`Magick-conifig --prefix`/lib"; ln -s libMagick++-Q8.7.dylib libMagick++.dylib; ln -s libMagickCore-Q8.7.dylib libMagickCore.dylib; ln -s libMagickWand-Q8.7.dylib libMagickWand.dylib – faraz Jan 21 at 4:14
5  
Rmagick version 2.13.2 fixes this. – Sooie Feb 12 at 20:15
What @Sooie said. Updating Gemfile.lock helps with that. – maksimov Mar 20 at 15:47
Correct answer here, though I had trouble because my imagemagick installation was not in /usr/local but in /users/... folder. Thanks anyway! – Francisco Apr 12 at 17:30
show 3 more comments

Try these:

sudo apt-get install imagemagick libmagickwand-dev

and then:

bundle
share|improve this answer
2  
There is apt-get on Mac OSX? – maksimov Mar 20 at 15:47
apt-get is not available on OSX – alvincrespo May 13 at 20:19
This answer fixed same problem on Ubuntu 12. Thanks!)) – dart May 16 at 21:52

After you installed imagemagick, can you try

> gem pristine rmagick

Got it from this thread. Rails Rmagick gem. Hope it helps.

share|improve this answer
1  
When I try to run this command, I'll get: ERROR: While executing gem ... (Gem::Exception) Failed to find gems ["rmagick"] >= 0 – user984621 Dec 20 '12 at 1:30
This only works if rmagick was previously installed. – scarver2 Jan 14 at 21:17

Alternatively you can drop back to an older version of ImageMagick. This thread has instructions on how to do it:

Now, to try and actually be useful I recommend you extract one of the older bottles into your Cellar and then do brew link imagemagick if you uninstalled the old version.

They are available here: http://sourceforge.net/projects/machomebrew/files/Bottles/imagemagick-6.7.7-6.snowleopard.bottle.3.tar.gz/download http://sourceforge.net/projects/machomebrew/files/Bottles/imagemagick-6.7.7-6.lion.bottle.3.tar.gz/download http://sourceforge.net/projects/machomebrew/files/Bottles/imagemagick-6.7.7-6.mountainlion.bottle.3.tar.gz/download

share|improve this answer

I had the same problem. If you check the mkmf.log, you'll see the following error message:

ld: library not found for -lgomp
clang: error: linker command failed with exit code 1 (use -v to see invocation)
checked program was:
/* begin */
1: #include "ruby.h"
2: 
3: int main() {return 0;}
/* end */\

Here is how I solved it:

  1. Uninstall current version of ImageMagick:

brew uninstall imagemagick

  1. Reinstall imagemagick without openmp support (this is the library responsible for lgomp):

brew install imagemagick --disable-openmp

  1. Install rmagick:

gem install rmagick

Thats it!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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