Skip to content

Instantly share code, notes, and snippets.

@santthosh
Created October 23, 2014 22:17
Show Gist options
  • Save santthosh/6beb453f851aab9e5664 to your computer and use it in GitHub Desktop.
Save santthosh/6beb453f851aab9e5664 to your computer and use it in GitHub Desktop.
Install ImageMagick on Amazon Linux AMI
# 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