1. 源码编译安装 Swoole
git clone https://gitee.com/swoole/swoole.git
cd swoole
/opt/remi/php73/root/usr/bin/phpize
./configure --with-php-cOnfig=/opt/remi/php73/root/usr/bin/php-config
make && make install
2. 使用 PECL 命令行工具升级(此方法可能失败)
pecl upgrade swoole
如果使用 PECL 命令升级时遇到“-bash: pecl: command not found”错误,说明系统中未安装 PECL 工具。此时需要先安装 PECL 及相关依赖:
yum install php-devel php-pear httpd-devel
如果在安装过程中出现错误提示,建议首先清除 yum 缓存,再尝试重新安装:
yum clean all
清除缓存后,再次运行安装命令:
yum install php-devel php-pear httpd-devel
以上步骤完成后,应能顺利使用 PECL 命令对 Swoole 进行升级。