Skip to content

Instantly share code, notes, and snippets.

@pzaich
Created November 2, 2012 00:48
Show Gist options
  • Save pzaich/3997914 to your computer and use it in GitHub Desktop.
Save pzaich/3997914 to your computer and use it in GitHub Desktop.
install graphicsmagick to EC2
wget ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.3/GraphicsMagick-1.3.15.tar.gz
tar -xvf GraphicsMagick-1.3.15.tar.gz
cd GraphicsMagick-1.3.15
./configure
make
sudo make install
@SebastianView
Copy link

maybe better to point to ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/GraphicsMagick-LATEST.tar.gz

@jmhmd
Copy link

jmhmd commented Feb 21, 2016

Minor note, fresh EC2 instance will require gcc installation before compiling:
sudo yum groupinstall "Development Tools"

@Jameron
Copy link

Jameron commented Oct 5, 2016

Does anyone know about the php extension for this library? Particularly interested in installing this on AWS AMI, but it doesn't seem to be available in their Yum repo.

@johnnyodonnell
Copy link

sudo yum install GraphicsMagick GraphicsMagick-devel

This proved to be much easier for me
From here: https://gist.github.com/abernardobr/f7b3190176b90f2ac4b2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment