windows 子系统 Ubuntu18.04 安装 swoole

Posted qiapin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows 子系统 Ubuntu18.04 安装 swoole相关的知识,希望对你有一定的参考价值。

首先安装composer并改为国内镜像

1.sudo apt-get install composer

composer config -g repo.packagist composer https://packagist.phpcomposer.com

安装环境

1. sudo apt-get install nginx-light

2. sudo apt-get install php7.0 php7.0-curl php7.0-gd php7.0-gmp php7.0-json php7.0-mysql php7.0-opcache php7.0-readline 

3.sudo apt install php-pear

4.sudo pecl install swoole

5.echo ‘extension=swoole.so‘ >> /etc/php/7.0/mods-available/swoole.ini

cd /etc/php/7.0/cli/conf.d/ && ln -s ../../mods-available/swoole.ini 20-swoole.ini
cd /etc/php/7.0/fpm/conf.d/ && ln -s ../../mods-available/swoole.ini 20-swoole.ini

sudo composer create-project easyswoole/app easyswoole

php easyswoole start
  • BashOnWindows 环境下必须关闭 daemonize 选项
  • 需要修改 config.h 关闭 HAVE_SIGNALFD
 

一些问题:

  如果出现 sh: phpize: command not found

  可以尝试 sudo apt-get install php-dev

  如果出现

  No releases available for package "pecl.php.net/swoole"
  install failed

  尝试:pear clear-cache
  pear update-channels
  pear upgrade

如果:Failed to download nikic/fast-route from dist: The zip extension and unzip command are both missing, skipping.
sudo apt-get install php-zip








以上是关于windows 子系统 Ubuntu18.04 安装 swoole的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu kylin 18.04 使用 wine 安装 EasyConnect 的windows版本

Windows10安装ubuntu18.04双系统教程

Windows——windows10下如何和子系统Ubuntu18.04互传文件

windows7下安装ubuntu18.04 双系统

Python Pytorch开发环境搭建(Windows和Ubuntu)

windows 子系统 Ubuntu18.04 安装 swoole