用pecl安装redis

时间:2015-09-21 03:44:57

标签: php redis pecl

我试图用pecl安装redis并最终得到错误。

sudo pecl install redis 

In file included from /private/tmp/pear/install/redis/redis.c:27:
/private/tmp/pear/install/redis/common.h:1:10: fatal error: 'php.h' file not found
#include "php.h"
     ^
1 error generated.
make: *** [redis.lo] Error 1
ERROR: `make' failed

我发现了和我一样的问题

Installing phpredis on osx with pecl

答案:看起来你的php在环境变量路径中不可用,或者安装是从某个默认位置选择php。

如何确认我的php是否在环境变量路径中不可用或安装是从某个默认位置选择php?另外,如果你知道另一种方法,请告诉我。

1 个答案:

答案 0 :(得分:0)

我知道它的旧问题,但在尝试安装rdkafa时遇到了同样的错误。我认为你通过brew安装了php。 运行以下命令,然后再次尝试安装。

export PATH="$(brew --prefix php)/bin:$PATH"