ubuntu | Deepin 安装 swoole

  • wget -c https://github.com/swoole/swoole-src/archive/v2.1.3.zip

  • unzip v2.1.3.zip

  • cd swoole-src-2.1.3/

  • phpize

  • ./configure

  • make

  • make install

得到如下(扩展生成的文件夹可能不同,具体可查看 phpinfo 信息的 extension_dir 的结果)

Installing shared extensions:     /usr/lib/php/20160303/
Installing header files:          /usr/include/php/20160303/

php.ini 中配置swoole扩展

extension_dir = "/usr/lib/php/20160303"
extension     = swoole.so
  • 查看 phpinfo

  • terminal 查看 swoole 信息

php --ri swoole

你可能感兴趣的:(ubuntu | Deepin 安装 swoole)