を使用して OSX 10.6.8 に rmagick gem をインストールしてgem install rmagick
いますが、次のエラーが表示されます。
Can't install RMagick 2.13.1. Can't find MagickWand.h.
*** 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/disaacs/.rvm/rubies/ruby-1.9.3-p125/bin/ruby
Gem files will remain installed in /Users/disaacs/.rvm/gems/ruby-1.9.3-p125/gems/rmagick-2.13.1 for inspection.
Results logged to /Users/disaacs/.rvm/gems/ruby-1.9.3-p125/gems/rmagick-2.13.1/ext/RMagick/gem_make.out
mkmf.log ファイルを見ると、
have_header: checking for wand/MagickWand.h... -------------------- no
"/usr/bin/gcc-4.2 -E -I/Users/disaacs/.rvm/rubies/ruby-1.9.3-p125/include/ruby-1.9.1/x86_64-darwin10.8.0 -I/Users/disaacs/.rvm/rubies/ruby-1.9.3-p125/include/ruby-1.9.1/ruby/backward -I/Users/disaacs/.rvm/rubies/ruby-1.9.3-p125/include/ruby-1.9.1 -I. conftest.c -o conftest.i"
conftest.c:3:29: error: wand/MagickWand.h: No such file or directory
それは本当です。ファイル MagickWand.h は、コマンドの-I
ディレクティブによって特定されるディレクトリのいずれにも見つかりません。なぜだめですか?どうすればこれを修正できますか?gcc-4.2
Homebrew を使用して ImageMagick をインストールします。ドライブを検索すると、MagicWand.h が にインストールされていることがわかります/usr/local/Cellar/imagemagick/6.7.7-6/include/ImageMagick/wand/MagickWand.h
。
Can't install RMagick 2.13.1のすべての提案を試しました。MagickWand.h が見つかりません。、しかし、どれも機能していません。
編集:注意すべきもう1つのこと:私はもともとMacPortsを使用してImagMagick 6.7.0-7をインストールし、RMagickを問題なくインストールしました。ただし、CarrierWave gem では機能しません。そこで、MacPorts をアンインストールし、RMagick をアンインストールしました。次にbrew install -f imagemagick --disable-openmp
、を使用して ImageMagick を再インストールし、rmagick gem を再インストールしようとしました (これにより、現在の問題が発生します)。パスが確実に更新されるように、各ステップですべてのターミナルを再起動しました。