Skip to content

Instantly share code, notes, and snippets.

@armstrongnate
Created May 13, 2013 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save armstrongnate/5569058 to your computer and use it in GitHub Desktop.
Save armstrongnate/5569058 to your computer and use it in GitHub Desktop.
Installing rmagick gem can be somewhat of a pain. Here's what ended up doing it for me.
brew update
brew uninstall ImageMagick
brew install ImageMagick
gem uninstall rmagick
gem install rmagick
cd /usr/local/Cellar/imagemagick/6.8.0-10/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
bundle
http://stackoverflow.com/questions/11676844/issue-with-installing-imagemagick-and-rmagick-on-mountain-lion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment