画像編集をRailsでしたかったので ImageMagick を Railsから使うgem rmagick をインストールしようと思ったらこんなエラーが出てしまった。環境は Maverick。

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.

解決策

最新版の 2.13.2 をインストールすればOK。ちなみにライブラリのリンクを作るという方法も紹介されてましたがこっちは失敗。

gem install rmagick -v '2.13.2' でインストールしましょう。

ドキュメントのインストールの時に unable to convert "¥xCF" from ASCII-8BIT to UTF-8 for なんたらこうたらというエラーが大量に出ましたがインストール自体は正常に動いてるようです。

参考

[imagemagick – Error installing Rmagick on Mountain Lion – Stack Overflow][1]