Skip to content

Instantly share code, notes, and snippets.

@manojkumararyan
Last active August 28, 2019 06:47
Show Gist options
  • Save manojkumararyan/0a319e0f755a14611b0d75a369582fa6 to your computer and use it in GitHub Desktop.
Save manojkumararyan/0a319e0f755a14611b0d75a369582fa6 to your computer and use it in GitHub Desktop.

Install imagemagick in ubuntu

- sudo apt-get update
- sudo apt-get install build-essential checkinstall libx11-dev libxext-dev zlib1g-dev libpng-dev libjpeg-dev libfreetype6-dev libxml2-dev
- sudo apt-get build-dep imagemagick
- wget http://www.imagemagick.org/download/ImageMagick-6.9.10-8.tar.gz #change version as per requirement
- tar -xzvf ImageMagick-6.9.10-8.tar.gz
- cd ImageMagick-6.9.10-8
- ./configure
- make
- sudo make install
- sudo ldconfig /usr/local/lib
- identify -version
- make check
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment