3

私は自分のアプリにRmagickをインストールする必要があるので、Webとstakeoverflowで私の質問に関連するほとんどすべてを検索しましたが、これらのどれも私にはうまくいきませんでした。私もこれに従いましたが、うまくいきませんでした

http://stackoverflow.com/questions/6473853/ruby-on-rails-rmagick-on-windows-7

私のRubyバージョン->1.9.3

Railsバージョン->3.2.9

ImageMagickバージョン->ImageMagick-6.8.3-2-Q16-x86-dll.exe

ここにImageMagickをインストールしました->C:\ImageMagick-6.8.3-Q16

CMDを開いて、入力しました

gem install rmagick --platform = ruby​​ --- with-opt-lib = C:\ ImageMagick-6.8.3-Q16 \ lib --with-opt-include = C:\ ImageMagick-6.8.3-Q16 \ include

エラーは

ERROR:  Error installing rmagick:
        ERROR: Failed to build gem native extension.

        d:/RailsInstaller/Ruby1.9.3/bin/ruby.exe extconf.rb --with-opt-lib=C:ImageMagick-6.8.3-Q16lib --with-opt-include=C:ImageMagick-6.8
.3-Q16include
checking for Ruby version >= 1.8.5... yes
Invalid drive specification.
Unable to get ImageMagick version
*** 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:/RailsInstaller/Ruby1.9.3/bin/ruby


Gem files will remain installed in d:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/rmagick-2.13.2 for inspection.
Results logged to d:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/rmagick-2.13.2/ext/RMagick/gem_make.out
4

1 に答える 1

0

この質問を「未回答」フィルターから削除するために、コメントから回答をコピーします。

私は解決策を見つけ、それが機能しましたhttp://rorashish.blogspot.in/2012/08/installing-rmagick-with-imagemagic-on.html

〜ガガンごとの回答

詳細については上記のリンクを参照してください。大まかな手順 (2012 年 8 月 9 日現在) は次のとおりです。

  1. Ghostscript をインストールする
  2. Imagemagick をインストールします (64 ビットは機能しないため、32 ビット バージョンを使用します)。
  3. コンソール/コマンド プロンプト/IDE/... (または Windows) を再起動します。
  4. rmagick をインストールする
于 2013-10-09T05:11:19.930 に答える