1

こんにちは、みんな、

私は ROR が初めてです。rmagick をローカル マシンにインストールしようとしています。毎回インストールしようとすると、次のエラーが表示されます: この状況を助けてください。

D:\ruby\bin>gem install rmagick  --platform=ruby -- --with-opt-lib=D:\ruby\Rmmagik\lib --with-opt-include=D:\ruby\Rmmagik\include   Temporarily enhancing PATH to include DevKit...
Building native extensions.  This could take a while...
ERROR:  Error installing rmagick:
ERROR: Failed to build gem native extension.

D:/ruby/bin/ruby.exe extconf.rb --with-opt-lib=D:\ruby\Rmmagik\lib --with-opt-include=D:\ruby\Rmmagik\include
checking for Ruby version >= 1.8.5... yes
checking for stdint.h... yes
checking for sys/types.h... yes
checking for wand/MagickWand.h... no

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
 --without-opt-dir
 --with-opt-include=${opt-dir}/include
 --with-opt-lib=${opt-dir}/lib
 --with-make-prog
 --without-make-prog
 --srcdir=.
 --curdir
 --ruby=D:/ruby/bin/ruby
Gem files will remain installed in D:/ruby/lib/ruby/gems/1.8/gems/rmagick-2.13.1 for inspection.
Results logged to D:/ruby/lib/ruby/gems/1.8/gems/rmagick-2.13.1/ext/RMagick/gem_make.out

前もって感謝します

スルジャン

4

1 に答える 1

1

ヘッダー ファイルがありません。

Windows を使用しているようですね。

その場合、簡単な解決策は、ビルド済みの Windows 用 ImageMagick バイナリをダウンロードすることです。

リンク

Debian または Ubuntu を使用している場合:

sudo apt-get install imagemagick libmagickcore-dev libmagickwand-dev

(編集者は、他のプラットフォーム用のソリューションを自由に追加してください)

于 2012-04-06T06:18:41.720 に答える