WordPress Studio, developed by Automattic, is a powerful open-source tool for managing local WordPress development environments. While pre-built binaries exist for macOS and Windows, Linux users must build the app from source. This guide walks you through setting up and running Studio on Ubuntu, including resolving common issues I encountered.
Prerequisites
Before starting, ensure your Ubuntu system is ready with the necessary tools. Open a terminal (Ctrl+Alt+T) and follow these steps.
Step 1: Update Your System
Keep your package lists and software up to date:
sudo apt update && sudo apt upgrade -y
Step 2: Install Git
Git is required to clone the Studio repository. Install it if you haven’t already:
sudo apt install git -y
Step 3: Install Node Version Manager (nvm)
Studio is built using Node.js, and nvm helps manage the specific Node.js version required. Install nvm with:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
After installation, reload your shell configuration to make nvm available:
source ~/.bashrc
Verify nvm is installed:
nvm --version
You should see a version number (e.g., 0.39.7). If not, close and reopen your terminal, then try again.























