2017-04-03 21 views
1

rmagickという宝石をインストールする際にエラーが発生しました。私は同じ問題に関して他のStack Over flowのウェブサイトを見てきました。しかし、うまくいきません。ImageMagick:ERROR:宝石ネイティブエクステンションの作成に失敗しました

エラー:上記

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. 

    current directory: C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/rmagick-2.16.0/ext/RMagick 
C:/Ruby22-x64/bin/ruby.exe -r ./siteconf20170403-8836-1ebgkj8.rb extconf.rb 
*** 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 
     --without-opt-include=${opt-dir}/include 
     --with-opt-lib 
     --without-opt-lib=${opt-dir}/lib 
     --with-make-prog 
     --without-make-prog 
     --srcdir=. 
     --curdir 
     --ruby=C:/Ruby22-x64/bin/$(RUBY_BASE_NAME) 
extconf.rb:141:in ``': No such file or directory - identify -version (Errno::ENOENT) 
     from extconf.rb:141:in `configure_compile_options' 
     from extconf.rb:16:in `initialize' 
     from extconf.rb:548:in `new' 
     from extconf.rb:548:in `<main>' 

extconf failed, exit code 1 

Gem files will remain installed in C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/rmagick-2.16.0 for inspection. 
Results logged to C:/Ruby22-x64/lib/ruby/gems/2.2.0/extensions/x64-mingw32/2.2.0/rmagick-2.16.0/gem_make.out 

C:\Users\suresh>gem install rmagick 
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. 

    current directory: C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/rmagick-2.16.0/ext/RMagick 
C:/Ruby22-x64/bin/ruby.exe -r ./siteconf20170403-7540-1x6tan0.rb extconf.rb 
*** 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 
     --without-opt-include=${opt-dir}/include 
     --with-opt-lib 
     --without-opt-lib=${opt-dir}/lib 
     --with-make-prog 
     --without-make-prog 
     --srcdir=. 
     --curdir 
     --ruby=C:/Ruby22-x64/bin/$(RUBY_BASE_NAME) 
extconf.rb:141:in ``': No such file or directory - identify -version (Errno::ENOENT) 
     from extconf.rb:141:in `configure_compile_options' 
     from extconf.rb:16:in `initialize' 
     from extconf.rb:548:in `new' 
     from extconf.rb:548:in `<main>' 

extconf failed, exit code 1 

Gem files will remain installed in C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/rmagick-2.16.0 for inspection. 
Results logged to C:/Ruby22-x64/lib/ruby/gems/2.2.0/extensions/x64-mingw32/2.2.0/rmagick-2.16.0/gem_make.out 

私が実際にやった、ステップ3とステップ4の出力と同じエラー。

1.Downloaded ImageMagick-7.0.5-4-Q16-x64-dll 
    2.Set my Path to C:\Program Files (x86)\ImageMagick-7.0.5-Q16\include 
    set 
    3.Install the gem using this command: 
     gem install rmagick --platform=ruby -- --with-opt-lib=C:\ImageMagick-7.0.5-Q16\lib --with-opt-include=C:\ImageMagick-7.0.5-Q16\include 
    4. or gem install rmagick 
    5. Using Windows 10 machine 

答えて

0

[OK]私はそれをインストールするために管理しました。

このガイドに従ってください。

手順1:ダウンロードしてインストールし、この

ImageMagick-6.9.8-3-Q16-HDRI-x64-dl 

ステップ2:宝石はそれをインストール

:セットし、CLASSPATHと呼ばれる新しい環境変数と値を作成する

.;C:\ImageMagick-6.9.8-Q16-HDRI\include;lib C:\ImageMagick-6.9.8-Q16-HDRI\lib 

ステップ3に設定します

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

重要なお知らせ

ImageMagickをダウンロードしてインストールするときは、パスとgemのインストール時にバージョン番号を正確に入力してください。

ImageMagic-6.9.8-3-Q16-HDRIのような例は正確に従ってください。

0

RMagickはまだImageMagickの7をサポートしていないようです。 ImageMagick 6.9の最新のビルドでrmagickをインストールしてみてください。

+0

私は7以下をインストールしました。まだ – Suresh

+0

あなたがこのエラーを取得しているあなたの設定を教えてくださいできません??? –

+0

@Suresh http://rubyinstaller.org/downloads/下にスクロールし、あなたのルビーの**開発キット**をダウンロードしてください –

関連する問題