我正在尝试使用此pecl命令为GraphicsMagick安装PHP API:

sudo pecl install channel://pecl.php.net/gmagick-1.0.10b1

在安装过程中,我被问到以下问题:
Please provide the prefix of GraphicsMagick installation [autodetect]

我不知道该如何回答,如果我只是按Enter键进行自动检测,则安装将失败。
checking whether to enable the gmagick extension... yes, shared
checking GraphicsMagick configuration program... configure: error: not found. Please provide a path to GraphicsMagick-config program.
ERROR: `/tmp/pear/temp/gmagick/configure --with-gmagick' failed

我正在使用ubuntu服务器,有人知道如何安装该程序吗?

最佳答案

尝试安装libgraphicsmagick1-dev软件包(sudo apt-get install libgraphicsmagick1-dev)。那应该在/usr/bin中为您提供GraphicsMagick-config。

尝试找出运行apt-file search <filename>的特定文件需要什么软件包时会有所帮助。因此,在这种情况下,在Ubuntu Server 11.04上的apt-file search GraphicsMagick-config给出:

% apt-file search GraphicsMagick-config
libgraphicsmagick1-dev: /usr/bin/GraphicsMagick-config
libgraphicsmagick1-dev: /usr/share/man/man1/GraphicsMagick-config.1.gz

10-08 12:34