Created
September 14, 2018 12:10
-
-
Save bat9r/b295e7ee79dd2de72ea63d9bb8e41bc5 to your computer and use it in GitHub Desktop.
Installing ImageMagick7 in docker container ubuntu:16.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
apt-get update | |
apt-get -y install wget gcc make libpng12-dev | |
wget https://imagemagick.org/download/ImageMagick.tar.gz | |
tar xvzf ImageMagick.tar.gz | |
cd ImageMagick-7* | |
./configure | |
make | |
make install | |
ldconfig /usr/local/lib | |
make check |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment