in reply to Re^2: The required ImageMagick libraries are not installed or not installed properly.
in thread The required ImageMagick libraries are not installed or not installed properly. [SOLVED]
The way I always do it, is manually. No package managers needed. It always works. My approach is similar to stevieb's but a bit different.
First, get the latest ImageMagick source tar ball, currently at IM source tar ball . Then tar -xvf ImageMagick.tar.gz. Then cd into the directory and just do ./configure and then "make" , then "sudo make install", or just make install as root. IM will install itself to it's default location in /usr/local and put all the needed files in the proper place. Then as root do a "ldconfig" to make sure the new libraries are loaded.
Then download the PerlMagick module from cpan, currently at PerlMagick , unpack it, cd into it, and do "perl Makefile.PL" then "make" then as root "make install". Report back here any errors you encounter.
My above procedure is the age-old standard foolproof way of manually installing libs and modules. You can manually install any module you want without the problems associated with package managers. You can install GD by the same procedure, it's just the standard way described in the README's of the libraries.The PerlMagick and ImageMagick module and library are of the highest quality as far as being bugfree. They always compile and install cleanly. Good luck.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: The required ImageMagick libraries are not installed or not installed properly.
by thanos1983 (Parson) on Apr 11, 2017 at 15:34 UTC |