3

私はしばらくこれに苦労してきました。Mac OS 10.7 (Mountain Lion) を実行しています。RMagick gem をインストールして、Rails 3 アプリで使用できるようにしようとしています。すでに自作でimagemagickをインストールしており、無事に終了したようです。XQuartz パッケージもインストールしました。「rmagick」を gemfile に追加して bundle install を実行すると、次のエラーが発生します。

Installing rmagick (2.13.1) with native extensions 
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

        /Users/Andrew/.rvm/rubies/ruby-1.9.3-p125/bin/ruby extconf.rb 
checking for Ruby version >= 1.8.5... yes
extconf.rb:128: Use RbConfig instead of obsolete and deprecated Config.
checking for clang... yes
checking for Magick-config... no
Can't install RMagick 2.13.1. Can't find Magick-config in /Users/Andrew/.rvm/rubies/ruby-1.9.3-p125/bin:/Users/Andrew/.rvm/gems/ruby-1.9.3-p125@global/bin:/Users/Andrew/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin

*** 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/Andrew/.rvm/rubies/ruby-1.9.3-p125/bin/ruby


Gem files will remain installed in /Users/Andrew/.rvm/gems/ruby-1.9.3-p125@global/gems/rmagick-2.13.1 for inspection.
Results logged to /Users/Andrew/.rvm/gems/ruby-1.9.3-p125@global/gems/rmagick-2.13.1/ext/RMagick/gem_make.out
An error occured while installing rmagick (2.13.1), and Bundler cannot continue.
Make sure that `gem install rmagick -v '2.13.1'` succeeds before bundling.

Process finished with exit code 5

なぜこれが起こっているのですか?

4

1 に答える 1

1

これらの手順に従って修正しました。ああああ!

  1. XCode 4.4 をインストールする
  2. コマンド ライン ツールをインストールします (Xcode の設定から)。
  3. XQuartz をインストールする
  4. ImageMagic をインストールします (brew install —vd imagemagick)。
  5. sudo ln -s /usr/bin/llvm-gcc-4.2 /usr/bin/gcc-4.2
  6. mdfind MagickWand.h (MagickWand.h ファイルへのパスを取得するため)
  7. C_INCLUDE_PATH=/usr/local/Cellar/imagemagick/6.7.7-6/include/ImageMagick gem install rmagick
于 2012-11-01T00:52:12.070 に答える