[Linux] Steps to Install ImageMagick from Source Files

Tadashi Shigeoka ·  Tue, March 26, 2013

I’ll introduce the steps to install ImageMagick from source files on CentOS 6.

ImageMagick

If you want to quickly install ImageMagick with yum, please refer to this:

[CentOS] ImageMagick を yum でインストール | CodeNote.net

cd /usr/local/src/
wget http://www.imagemagick.org/download/ImageMagick.tar.gz
tar xvfz ImageMagick.tar.gz

cd ImageMagick-6.8.4-1/
./configure
make
make install

The ImageMagick installation procedure was referenced from the official site.

Download ImageMagick source files from the following:

Reference Information

That’s all from the Gemba.