Last active
August 29, 2015 14:17
-
-
Save lukrizal/23ffc140c5eb160dfbbd to your computer and use it in GitHub Desktop.
Imagemagick Installation
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
#!/usr/bin/env bash | |
yum install ImageMagick ImageMagick-devel -y | |
yum --enablerepo=remi,remi-test install php-pecl-imagick -y |
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
#!/usr/bin/env bash | |
VERSION=6.9.1-0 | |
mkdir -p ~/imagick-installation && cd ~/imagick-installation | |
wget http://www.imagemagick.org/download/ImageMagick-${VERSION}.tar.gz | |
tar xvzf ImageMagick-${VERSION}.tar.gz | |
cd ~/imagick-installation/ImageMagick-${VERSION} | |
./configure && make | |
sudo make install && sudo ldconfig /usr/local/lib | |
make check |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment