当前位置: 首页>>技术教程>>正文


在Ubuntu上安装imagick PHP扩展

, , ,

问题描述

我正在尝试在Ubuntu服务器上安装imagick pecl扩展名,并遇到以下错误。我已经使用aptitude安装了ImageMagick rpm,并且pecl扩展名为2.3.0版。我在网上四处张望,但找不到任何指向正确方向的东西。我还尝试查找看起来可能是错误提及但找不到的Wand-config程序或MagickWand-config程序。

steven@server:/var/www$ sudo pecl install imagick
downloading imagick-2.3.0.tgz ...
Starting to download imagick-2.3.0.tgz (86,976 bytes)
.....................done: 86,976 bytes
12 source files, building
running: phpize
Configuring for:
PHP Api Version:         20041225
Zend Module Api No:      20060613
Zend Extension Api No:   220060519
Please provide the prefix of Imagemagick installation [autodetect] :
building in /var/tmp/pear-build-root/imagick-2.3.0
running: /tmp/pear/temp/imagick/configure --with-imagick
*** ... snip ... ***
checking ImageMagick MagickWand API configuration program... configure: error: not found. Please provide a path to MagickWand-config or Wand-config program.
ERROR: `/tmp/pear/temp/imagick/configure --with-imagick' failed

我删除了大部分输出,因为它似乎并没有帮助,但是如果需要,我可以发布。

  • PHP是5.2.4

  • ImageMagick是6.3.7

  • 今天还运行sudo aptitude upgrade来升级RPM,然后再安装ImageMagick

最佳方法

您需要安装ImageMagick devel软件包。在Ubuntu中尝试:

sudo apt-get install libmagickwand-dev libmagickcore-dev

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/8099.html,未经允许,请勿转载。