当我在rvm中安装rmagick时,我一直收到此错误。
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.
这是我目前的设置:
Snow Leopard 10.6.7
XCode 3.2.6
RVM 1.6.1
Ruby Over RVM (ree1.8.7)
Homebrew 0.8
ImageMagick 6.6.9-4 c/o Homebrew
使用Homebrew安装imagemagick后,我可以使用系统ruby安装rmagick
rvm system
sudo gem install rmagick
有什么想法吗?
答案 0 :(得分:7)
我认为自制软件中的imagemagick软件包存在一段时间的问题。我刚刚在我的系统上重新安装rmagick(也是使用RVM的10.6.7)。首先我重新安装了imagick:
brew uninstall imagick
然后
brew install imagick
最后我做了
gem install rmagick
编译时没有任何问题。我不明白为什么它会导致你出现问题,但除非你以root用户身份安装RVM,否则在使用rvm时你不需要使用sudo。
答案 1 :(得分:1)
RMagick希望Homebrew能够提供某些不退出的符号链接causing a whole lotta problems。
您可以运行this gist来创建特定于您的Imageagagick安装的符号链接,这些符号链接是RMagick工作所必需的。