Created
October 23, 2014 22:17
Install ImageMagick on Amazon Linux AMI
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
# Download the source | |
curl -o ImageMagick.tar.gz http://www.imagemagick.org/download/ImageMagick.tar.gz | |
# Extract | |
cd ImageMagick-6.8.9 | |
# Build | |
./configure | |
make | |
# Install | |
sudo make install | |
# Configure dynamic linker | |
sudo ldconfig /usr/local/lib | |
# Check | |
/usr/local/bin/convert logo: logo.gif | |
# Test Comprehensive | |
make check | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment