Installing wp-env
Requires nvm.
First install docker-compose
(this script doesn't work with docker compose
):
sudo apt install docker-compose -y
Then install wp-env
cd ~/dev/wp/myplugin
# Install and use the latest LTS node
nvm install --lts
nvm use lts/*
# Install wp-env as a global node LTS package
npm install --global @wordpress/env
# Now you can use it anytime
wp-env start
The information wasis based on the official wp-env announcement