我无法安装 APC

我无法安装 APC

我有 php 5.3.6 和 ubuntu。我想安装 APC。

当我这样做时$ pecl install apc,我最终收到一个错误:

In file included from /tmp/pear/temp/APC/apc.c:44:0:
/usr/include/php5/ext/pcre/php_pcre.h:29:18: fatal error: pcre.h: No such file or directory
compilation terminated.
make: *** [apc.lo] Error 1
ERROR: `make' failed

当我尝试这样做时,$ yum install php-pecl-apc总是会出现错误:No package "php-pecl-apc" available

我尝试做了$ yum clean all,但没有什么变化。

我不知道该怎么做。你有什么建议吗?

答案1

yum install pcre-devel. 你需要 Perl 兼容的正则表达式库开发头文件

你提到了 Ubuntu,不妨使用apt-get install libpcre3-dev

相关内容