Rails and OS X: How to install rmagick?

rmagick has a problem working with imagemagick (>= 6.8.0-10) from homebrew. You can either update rmagick gem by bundle update rmagick or 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 …

Read more