How to install imagemagick binary on CentOS

How to install imagemagick binary on CentOS

For many application we need to install the imagemagick on Centos linux server. Many Ruby on rails and PHP applications need the support of imagemagick for image resizing.

How to install imagemagick binary on CentOS

 

How to install imagemagick binary on CentOS
How to install imagemagick binary on CentOS

We all the very traditional way of installing the application on linux machine which is as follows:

# yum install imagemagick

This command will not install the imagemagick on Centos properly. So use following commands for installing the imagemagick on centos

#yum install gcc*

#cd /tmp

# wget ftp://ftp.fifi.org/pub/ImageMagick/ImageMagick-6.6.1-10.tar.gz

# tar xzf ImageMagick-6.6.1-10.tar.gz

# cd ImageMagick-6.6.1-10

# ./configure

# make

# make install

After using the above commands imagemagick will be installed the properly on CentOS machine.

If you have any trouble or issues during installation then get back to me.

Published by

Purab

I am Purab from India, Software development is my profession and teaching is my passion. Programmers blog dedicated to the JAVA, Python, PHP, DevOps and Opensource Frameworks. Purab's Github Repo Youtube Chanel Video Tutorials Connect to on LinkedIn

Leave a Reply

Your email address will not be published.