Install ImageMagick from Source on Debian
Download ImageMagick tar.gz package:
wget http://www.imagemagick.org/download/ImageMagick.tar.gz |
Unpack ImageMagick.tar.gz file:
tar xvzf ImageMagick.tar.gz |
Open the ImageMagick-7.0.2-0 folder:
cd ImageMagick-7.0.2-0 |
Configure and compile ImageMagick:
./configure make |
If all went well without errors, install ImageMagick:
make install |
Configure the dynamic linker run-time bindings:
ldconfig /usr/local/lib |
Verify that ImageMagick works properly:
/usr/local/bin/convert logo.gif logo.png |
For more tests, run ImageMagick validation suite:
make check |
References:
ImageMagick: Install from Source
More Related Posts
- [2016/06/01] Extract and Count Unique IP Addresses ...
- [2016/06/21] Bash: lsb_release: command not found
- [2016/05/25] Debconf-get-selections: Command not fo...
- [2016/05/26] Cannot Access Attachments Upload Path ...
- [2016/05/24] Free Windows Templates For Kimsufi
- [2016/07/02] Run a Bash Script in Background with N...
- [2016/06/15] Bash: make: command not found
- [2016/07/02] Execute Commands After You Exit From a...