ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
最新版本4.4.x git clone https://github.com/swoole/swoole-src.git cd swoole phpize ![](https://img.kancloud.cn/66/69/6669fd4e6a914850c218defcf40dd294_1148x240.png) 如果报这个错的话,就是没有安装autoconf 解决方案也简单 ~~~linux yum install autoconf ~~~ ~~~linux ./configure --with-php-config=/usr/bin/php-config ~~~ find / -name php-config查找php-config文件位置 ~~~ make && make install ~~~ 扩展是需要在php.ini中去配置一下才能生效的 ~~~ ;加入swoole扩展 extension=swoole ~~~