Ubuntu - 无法安装RMagick

时间:2013-05-04 15:37:57

标签: ruby-on-rails ruby ubuntu rmagick

如何将RMagick gem安装到Ubuntu?我在SO上找到了一些线程,其中一些直接指出了Ubuntu系统上的安装,但它们都没有为我工作。

如果我运行 sudo gem install rmagick

,这是我得到的输出
Building native extensions.  This could take a while...
ERROR:  Error installing rmagick:
    ERROR: Failed to build gem native extension.

        /opt/bitnami/ruby/bin/ruby extconf.rb
checking for Ruby version >= 1.8.5... yes
checking for gcc... yes
checking for Magick-config... yes

Warning: Found more than one ImageMagick installation. This could cause problems at runtime.
         /opt/bitnami/common/bin/Magick-config reports version 6.7.5 Q16 is installed in /opt/bitnami/common
         /usr/bin/Magick-config reports version 6.6.9 Q16 is installed in /usr
Using 6.7.5 Q16 from /opt/bitnami/common.

checking for ImageMagick version >= 6.4.9... yes
checking for HDRI disabled version of ImageMagick... yes
Package MagickCore was not found in the pkg-config search path.
Perhaps you should add the directory containing `MagickCore.pc'
to the PKG_CONFIG_PATH environment variable
No package 'MagickCore' found
Package MagickCore was not found in the pkg-config search path.
Perhaps you should add the directory containing `MagickCore.pc'
to the PKG_CONFIG_PATH environment variable
No package 'MagickCore' found
Package MagickCore was not found in the pkg-config search path.
Perhaps you should add the directory containing `MagickCore.pc'
to the PKG_CONFIG_PATH environment variable
No package 'MagickCore' found
Package MagickCore was not found in the pkg-config search path.
Perhaps you should add the directory containing `MagickCore.pc'
to the PKG_CONFIG_PATH environment variable
No package 'MagickCore' found
checking for stdint.h... yes
checking for sys/types.h... yes
checking for wand/MagickWand.h... no

Can't install RMagick 2.13.2. Can't find MagickWand.h.
*** 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=/opt/bitnami/ruby/bin/ruby


Gem files will remain installed in /opt/bitnami/ruby/lib/ruby/gems/1.9.1/gems/rmagick-2.13.2 for inspection.
Results logged to /opt/bitnami/ruby/lib/ruby/gems/1.9.1/gems/rmagick-2.13.2/ext/RMagick/gem_make.out

它位于Amazon EC2服务器上。 如果我尝试只运行 gem install rmagick ,我会得到

ERROR:  While executing gem ... (Gem::FilePermissionError)
    You don't have write permissions into the /opt/bitnami/ruby/lib/ruby/gems/1.9.1 directory.

请帮助我,如何解决这个问题?

非常感谢

编辑:我尝试了什么:

  1. sudo apt-get install libmagickwand-dev

    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    libmagickwand-dev is already the newest version.
    The following packages were automatically installed and are no longer required:
      libgraphicsmagick3 libmagick++4 libgraphicsmagick++3 libgraphicsmagick1-dev
      libgraphics-magick-perl libperl5.14 libgraphicsmagick++1-dev
    Use 'apt-get autoremove' to remove them.
    0 upgraded, 0 newly installed, 0 to remove and 40 not upgraded.
    
  2. sudo apt-get install libmagickwand-dev imagemagick

    阅读包裹清单......完成     构建依赖树     阅读国家信息......完成     imagemagick已经是最新版本了。     libmagickwand-dev已经是最新版本了。     以下软件包已自动安装,不再需要:       libgraphicsmagick3 libmagick ++ 4 libgraphicsmagick ++ 3 libgraphicsmagick1-dev       libgraphics-magick-perl libperl5.14 libgraphicsmagick ++ 1-dev     使用'apt-get autoremove'删除它们。     0升级,0新安装,0删除,40未升级。

  3. apt-get install libmagickwand-dev

    E:无法打开锁定文件/ var / lib / dpkg / lock - open(13:Permission denied) E:无法锁定管理目录(/ var / lib / dpkg /),你是root用户吗?

  4. sudo apt-get install libmagickwand-dev

    阅读包裹清单......完成 构建依赖树 阅读国家信息......完成 libmagickwand-dev已经是最新版本了。 以下软件包已自动安装,不再需要:   libgraphicsmagick3 libmagick ++ 4 libgraphicsmagick ++ 3 libgraphicsmagick1-dev   libgraphics-magick-perl libperl5.14 libgraphicsmagick ++ 1-dev 使用'apt-get autoremove'删除它们。 0升级,0新安装,0删除,40未升级。

  5. 但上面仍然是相同的错误信息。

1 个答案:

答案 0 :(得分:30)

查看错误输出,您错过了rmagick的一个依赖项。试试

sudo apt-get install libmagickwand-dev

然后尝试

gem install rmagick

第二个问题可能是由于许可问题。有关您采取的步骤的更多信息将有助于我们为您提供更好的答案。