by Pep
configure: error: not found. Please provide a path to MagickWand-config or Wand-config program.
Are you trying to install the PHP imagick extension but keep getting this error?
Besides the imagick extension there are 2 packages you need: imagemagick and libmagick9-dev.
apt-get install imagemagick libmagick9-dev
pecl install imagick
Don’t forget to add “extension=imagick.so” to your php.ini file and you should be ready to go.
| Print article | This entry was posted by Pep on June 24, 2010 at 4:59 am, and is filed under Computing. Follow any responses to this post through RSS 2.0. You can skip to the end and leave a response. Pinging is currently not allowed. |
about 1 year ago
Hello Pep,
you made a (small) mistake. You forgot the “e” in the word “imagemagick”.
The right syntax would be “apt-get install imagemagick”
about 1 year ago
Hi mate,
Thanks for letting me know, I have changed it in my post.
Pep
about 6 months ago
Cheers to the commands. I was having issues and you solved it. I can process images with PHP now. Thanks.