Created
August 3, 2015 08:14
-
-
Save escaroda/7595c0d8ab4bf089fda2 to your computer and use it in GitHub Desktop.
Installing Image Magick on Ubuntu 14.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo -i | |
cd | |
apt-get install build-essential checkinstall && apt-get build-dep imagemagick -y | |
wget http://www.imagemagick.org/download/ImageMagick.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 | |
// OR | |
sudo apt-get install imagemagick |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment