如何在Ubuntu 10.04上安装rmagick?


100

到目前为止,这是我所做的:

sudo apt-get install imagemagick libmagickcore-dev

这并没有引发任何错误,因此我认为ImageMagick安装得很好。然后我尝试安装gem:

sudo gem install rmagick

这导致以下错误:

ERROR:  Error installing rmagick:
    ERROR: Failed to build gem native extension.

/usr/bin/ruby1.8 extconf.rb
checking for Ruby version >= 1.8.5... yes
checking for gcc... 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... no

Can't install RMagick 2.13.1. 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=/usr/bin/ruby1.8


Gem files will remain installed in /usr/lib/ruby/gems/1.8/gems/rmagick-2.13.1 for inspection.
Results logged to /usr/lib/ruby/gems/1.8/gems/rmagick-2.13.1/ext/RMagick/gem_make.out

在Ubuntu 10.04上安装rmagick时需要做什么?


也许搬到了unix.stackexchange?
克里斯,2010年

Answers:


128

我认为您还必须从ubuntu归档文件安装libmagickwand-dev:

sudo apt-get install libmagickwand-dev

该软件包包含MagickWand.h文件。


1
为什么不自动包含此内容?
Mark Boulder 2014年

30
须藤apt-get install libmagickwand-dev imagemagick

5

我按照以下步骤从源进行构建

> wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz
> tar -xzvf ImageMagick.tar.gz
> ./configure --prefix=/usr/local --with-x=no --disable-static --with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8 --disable-openmp
> make
> sudo make install
> sudo /sbin/ldconfig /usr/local
> sudo ln -f /usr/local/bin/Magick-config /usr/bin/Magick-config
> sudo PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/ gem install rmagick

结果

Building native extensions.  This could take a while...
Successfully installed rmagick-2.13.1
1 gem installed

从源代码构建时,这对我有用。谢谢!
Delameko


0
  1. aptitude install imagemagick
  2. aptitude install perlmagick

按照这些说明


1
除非您正在与通过rvm使用特定版本Ruby的团队合作,否则这种方法很好用,很强。对于使用rvm的人员,上面的要求列表应该有效。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.