Install swoole on window
Not directly, but with Docker and WSL (Windows Subsystem for Linux). Install Docker ( https://www.docker.com/products/docker-desktop ) Setup WSL Open PowerShell as Administrator and run Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux Updating/Install the WSL 2 Linux kernel ( https://docs.microsoft.com/en-us/windows/wsl/wsl2-kernel ) Enable "Enable the experimental WSL 2 based engine" in Docker (General) Build the Docker container IMPORTANT! Don't use a path with spacebars like: C:\Users\ {FIRSTNAME}[SPACEBAR]{LASTNAME}\Desktop\docker) Create a folder (D:\docker) and create with an Editor the Dockerfile (D:\docker\Dockerfile) FROM php: 7.4 . 2 -cli RUN apt-get update && apt-get install vim -y && \ apt-get install openssl -y && \ apt-get install libssl-dev -y && \ apt-get install wget -y && \ apt-get install git -y && \ apt-get install procps -...