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

        /Users/XXXXXXX/.rvm/rubies/ruby-1.9.2-p180/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/XXXXXXX/.rvm/gems/ruby-1.9.2-p180/bin:/Users/XXXXXXX/.rvm/gems/ruby-1.9.2-p180@global/bin:/Users/XXXXXXX/.rvm/rubies/ruby-1.9.2-p180/bin:/Users/XXXXXXX/.rvm/bin:/Users/XXXXXXX/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/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/XXXXXXX/.rvm/rubies/ruby-1.9.2-p180/bin/ruby


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

But when I do this:

$ locate Magick-config
/opt/local/bin/Magick-config
/opt/local/share/man/man1/Magick-config.1.gz
/opt/local/var/macports/software/ImageMagick/6.6.4-9_0+q16/opt/local/bin/Magick-config
/opt/local/var/macports/software/ImageMagick/6.6.4-9_0+q16/opt/local/share/man/man1/Magick-config.1.gz
/opt/local/var/macports/software/ImageMagick/6.6.5-0_0+q16/opt/local/bin/Magick-config
/opt/local/var/macports/software/ImageMagick/6.6.5-0_0+q16/opt/local/share/man/man1/Magick-config.1.gz

Any ideas?

AnApprentice
  • 108,152
  • 195
  • 629
  • 1,012
  • 1
    Sorry, missed the second part of your question. I'm not sure how you specify the path to imagemagick when installing the gem. macports puts things in non-standard locations, so it's not seeing it. – d11wtq Jul 14 '11 at 04:55
  • 2
    had same problem in terminal do export PATH=/opt/local/bin:/opt/local/sbin:$PATH then sudo gem install rmagick works fine – Rubytastic Nov 23 '11 at 15:47
  • @Rubytastic: this is the only thing that got it to work. I noticed that the PATH in the gem install error message did not contain /opt/local/bin, which got removed because of rvm's installation games with .bash_profile, which is where macports put the addition of /opt/local/bin to the PATH) – Bogatyr Apr 11 '13 at 20:20

6 Answers6

35

command: sudo apt-get install libmagickwand-dev

MarsZ Chen
  • 436
  • 5
  • 4
4

It isn't quite the answer to the question, but the recommended way of installing Imagemagick and Rmagick on Mac is through homebrew. It's the only way I could get Imagemagick and Rmagick playing nicely together on Mac.

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Dave A-R
  • 1,159
  • 1
  • 11
  • 22
4

For Ubuntu (11.10+) try installing the libmagick++-dev package.

For other Linux distributions, try installing the libmagick-dev package.

Ryan Ahearn
  • 7,886
  • 7
  • 51
  • 56
serengeti12
  • 5,205
  • 4
  • 23
  • 27
3

For my case, I am installing it on Ubuntu/Linaro 4.5.2-8ubuntu3, got same error, tried to installed the following two package suites and it worked, maybe either one of them:

sudo apt-get install graphicsmagick-libmagick-dev-compat

sudo apt-get install libmagickwand-dev

Guoqiang Huang
  • 169
  • 2
  • 10
2

On mac, after

brew install imagemagick

Don't forget to link dylibs with:

brew link imagemagick

0

I had to transfer an old application to a debian stretch server.
The used ruby version was 2.0.x.
imagemagick was installed including libmagickwand-dev.
Trying to install rmagick 2.13.2 failed.

I had to upgrade the rmagick verion (patched my Gemfile.lock) to use rmagick 2.16.0, the last version supporting ruby 2.0.

Martin M
  • 8,430
  • 2
  • 35
  • 53