A Programmer’s Perspective twitter
A Programmer’s Perspective Rss

Slicehost CentOS RMagick Install

Posted by Jason | Posted in linux | Posted on 20-02-2009

1

I feel your pain.

The problem is that if you install ImageMagick and ImageMagick-devel from yum you end up with version 6.2.x instead of the required 6.3.x or higher that RMagick requires.

Just install from source.  Follow these steps.

wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz

cd ImageMagick-6-??

./configure

make

make install

gem install rmagick

Relax with a beer.

Comments (1)

I tried what you said (adding in the tar command) and I get:
checking for Magick-config… no
I think this means I need to install imagemagick-devel, but I’m not yet sure how to do that from source. Still looking…

Write a comment