将swoole压缩包下载下来
注意:v4.4.*版本需要phpv7.1及以上版本
(1)下载安装包
wget https://github.com/swoole/swoole-src/archive/v4.3.1.zip
(2)进行解压,并进入解压后的文件
unzip v4.3.1.zip
cd swoole-src-4.3.1
(3)执行phpize命令 并编译(编译时需要编译到你的PHP版本目录下)
phpize
./configure --with-php-config=/www/server/php/70/bin/php-config
(4)执行make 和 make install 进行安装swoole
make
make install
安装完成