Skip to content

Instantly share code, notes, and snippets.

@burnash
Forked from rodleviton/imagemagick-install-steps
Last active March 27, 2019 12:00
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save burnash/446e28c09655a96408757358b504d276 to your computer and use it in GitHub Desktop.
Save burnash/446e28c09655a96408757358b504d276 to your computer and use it in GitHub Desktop.
Installing Image Magick on Ubuntu 14.04
sudo -i
cd
apt-get install build-essential checkinstall -y
apt-get build-dep imagemagick -y
apt-get install libwebp-dev -y
wget http://www.imagemagick.org/download/ImageMagick-6.9.5-8.tar.gz
tar xzvf ImageMagick-6.9.5-8.tar.gz
cd ImageMagick-6.9.5-8/
./configure
make
checkinstall
ldconfig /usr/local/lib
# Test the installation:
convert -version
@joshuapinter
Copy link

Had to run ldconfig aftewards to update the links/bindings.

@lalitlogical
Copy link

lalitlogical commented Mar 27, 2019

verify delegates with help of convert -list configure | grep -i "delegates"

@lalitlogical
Copy link

lalitlogical commented Mar 27, 2019

Replace wget http://www.imagemagick.org/download/ImageMagick-6.9.5-8.tar.gz with wget http://www.imagemagick.org/download/ImageMagick.tar.gz

And use respective folder name i.e. ImageMagick-6.9.5-8 with ImageMagick-7.0.8-35 or according to latest ImageMagick version

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment