我正在尝试使用此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服务器,有谁知道如何安装这个程序?
答案 0 :(得分:11)
尝试安装libgraphicsmagick1-dev
包(sudo apt-get install libgraphicsmagick1-dev)。那应该给你/ usr / bin中的GraphicsMagick-config。
当试图弄清楚运行apt-file search <filename>
的特定文件需要什么包时会有帮助。所以在这种情况下,{0}在Ubuntu Server 11.04上给出了:{/ p>
apt-file search GraphicsMagick-config
答案 1 :(得分:1)
在OS X上运行
brew install GraphicsMagick
然后重新运行pecl安装命令