Skip to content

Instantly share code, notes, and snippets.

@thinhhung
Forked from rodleviton/imagemagick-install-steps
Created February 2, 2018 06:35
Show Gist options
  • Save thinhhung/877f6ed22f1a4ce70707564ff5927dd1 to your computer and use it in GitHub Desktop.
Save thinhhung/877f6ed22f1a4ce70707564ff5927dd1 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 && apt-get build-dep imagemagick -y
wget http://www.imagemagick.org/download/ImageMagick-6.8.7-7.tar.gz
tar xzvf ImageMagick-6.8.9-1.tar.gz
cd ImageMagick-6.8.9-1/
./configure --prefix=/opt/imagemagick-6.8 && make
checkinstall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment