mac air中编译安装swoole
本机php版本, 我的7.3.0
1 下载swoole源码
https://github.com/swoole/swoole-src/releases
我下载的版本是swoole-src-4.3.3.zip
2 解压源码编译安装
unzip swoole-src-4.3.3.zip cd swoole-src-4.3.3 phpize
./configure
make
(这个命令执行时间有点长)
出现这个说明make成功接下来运行命令
sudo make install
这个给个管理员权限执行 第一次没有加sudo,报了好多Permission denied。
php.ini配置文件中添加swoole.so扩展 (不知道配置文件放在哪的可用 php -i |grep php.ini 查看)
重启php
查看是否安装成功 重新开启一个iTerm2
php -m|grep s
(此命令查看名字包含s的php扩展)
至此 php7.3.0 的swoole扩展安装成功
swoole官网
https://wiki.swoole.com/wiki/page/6.html
文字均为博主原创,转载请联系博主,谢谢!