-
-
Save burnash/446e28c09655a96408757358b504d276 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 -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 |
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
verify delegates with help of
convert -list configure | grep -i "delegates"