在osx上安装phpredis for PHP5.6不起作用

deikduxw  于 2021-06-09  发布在  Redis
关注(0)|答案(1)|浏览(430)

我正在尝试使用PHP5.6在mac上安装phpredis。我运行以下命令:

1. git clone https://www.github.com/phpredis/phpredis.git
2. cd phpredis
3. phpize && ./configure && make && sudo make install

但当我运行命令3时,出现以下错误:

In file included from /Users/user1/phpredis/redis.c:25:
In file included from ./php_redis.h:20:
./common.h:12:10: fatal error: 'zend_smart_str.h' file not found

# include <zend_smart_str.h>

         ^~~~~~~~~~~~~~~~~~
1 error generated.
make:***[redis.lo] Error 1

还有别的安装方法吗?

mdfafbf1

mdfafbf11#

从github可以使用``pecl作为另一种安装方法。
但它也定义了一些在安装链接时出错时可以运行的命令

相关问题