为什么我会收到此错误的任何想法:
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
/Users/xiruki/.rvm/rubies/ruby-1.9.3-p448/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 /usr/local/bin/gcc-4.2... yes
checking for Magick-config... yes
checking for ImageMagick version >= 6.4.9... yes
checking for HDRI disabled version of ImageMagick... yes
checking for stdint.h... yes
checking for sys/types.h... yes
checking for wand/MagickWand.h... yes
checking for InitializeMagick() in -lMagickCore... no
checking for InitializeMagick() in -lMagick... no
checking for InitializeMagick() in -lMagick++... no
Can't install RMagick 2.13.1. Can't find the ImageMagick library or one of the dependent libraries. Check the mkmf.log file for more detailed information.
*** 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/xiruki/.rvm/rubies/ruby-1.9.3-p448/bin/ruby
--with-MagickCorelib
--without-MagickCorelib
--with-Magicklib
--without-Magicklib
--with-Magick++lib
--without-Magick++lib
Gem files will remain installed in /Users/xiruki/.bundler/tmp/635/gems/rmagick-2.13.1 for inspection.
Results logged to /Users/xiruki/.bundler/tmp/635/gems/rmagick-2.13.1/ext/RMagick/gem_make.out
An error occurred while installing rmagick (2.13.1), and
Bundler cannot continue.
Make sure that `gem install rmagick -v '2.13.1'` succeeds
before bundling.
尝试了很多解决方法,但没有奏效。
试图制造brew doctor
并brew update
成功,但没有运气。
我还使用成功安装了 imagemagickbrew install imagemagick
我还尝试通过执行 ff 卸载并再次安装 imagemagick:
brew uninstall imagemagick
brew install --fresh imagemagick
但似乎一切都还没有为我的应用程序做bundle install
or bundle update rmagick
。
我已经尝试过sudo gem install rmagick
,奇怪的是它已成功安装。
但无法捆绑我的应用程序,因为它因上述错误而停止。
我的应用正在尝试安装rmagick-2.13.1
查看我本地安装的版本,安装的版本是2.13.2
认为我非常需要安装应用程序所需的版本。
我正在使用 MAC 顺便说一句。