尝试安装 RMagick 时出现此错误:
$ sudo gem install rmagick
Building native extensions. This could take a while...
ERROR: Error installing rmagick:
ERROR: Failed to build gem native extension.
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb
checking for Ruby version >= 1.8.5... yes
checking for gcc... yes
checking for Magick-config... no
Can't install RMagick 2.13.1. Can't find Magick-config in /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin:~/bin:/usr/local/bin:/usr/local/mysql/bin:/usr/local/pear/bin
*** 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=/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
Gem files will remain installed in /Library/Ruby/Gems/1.8/gems/rmagick-2.13.1 for inspection.
Results logged to /Library/Ruby/Gems/1.8/gems/rmagick-2.13.1/ext/RMagick/gem_make.out
如何在 Snow Leopard 上安装 RMagick RubyGem?
答案1
你也可以考虑自制试用一下。它在过去一年中发展迅速,被广泛用作 MacPorts 的替代品。
Homebrew 是对 MacPorts 复杂性的回应。它非常简单。Homebrew 似乎更针对单个软件包。如果你想要获取整个开源软件世界并想要每个软件包,那么你最好使用 MacPorts 或 Fink。但如果你正在寻找偶尔使用的工具或实用程序,Homebrew 适合你。
答案2
我找到了一种无需使用 MacPorts 即可实现的方法。感谢用于在 Snow Leopard 上安装 ImageMagick 的 shell 脚本,我可以轻松运行脚本并自动安装 ImageMagick 及其所有依赖项。
首先您需要下载脚本。如果您已经git
安装...
cd ~/src
git clone git://github.com/masterkain/ImageMagick-sl.git
cd ImageMagick-sl
sh install_im.sh
它会使用 运行命令sudo
,因此会要求您输入密码。脚本完成后,将安装 ImageMagick。现在,安装 RMagick gem...
sudo gem install rmagick
就是这样!
答案3
OS X 默认不安装 ImageMagick。ImageMagick 主页提供二进制安装,尽管他们建议使用麦金塔我会推荐使用 MacPorts,因为它是一个很棒的包管理系统,可以让你随时了解类 Unix 软件的最新版本,而不是 Apple 提供的版本。
话说回来,Rubyforge有一些关于使用 MacPorts 在 OS X 上安装 RMagick 的说明。它有点过时了,您可能需要为 ImageMagick 安装选择不同的变体,但它应该可以满足您的要求。