Open Design runs on Windows natively, but the path is less travelled than macOS, Linux, or WSL2. This guide covers the most common errors you will hit on a fresh Windows machine and the exact fix for each.
Tip: If you already have WSL2 set up, that is the smoothest path on Windows. This guide is for native Windows (PowerShell).
| Tool | Version | How to verify |
|---|---|---|
| Node.js | ~24 |
node -v |
| pnpm | 10.33.x |
pnpm -v |
| Git | any recent | git --version |
node -v returns something older than v24.x.x, or you do not have Node installed at all.
Option A — nvm-windows (recommended)
-
Install nvm-windows.
-
In a fresh PowerShell window:
nvm install 24 nvm use 24 node -v # should print v24.x.x
Option B — Official installer
Download and run the Node 24 .msi from nodejs.org.
If running nvm version or node -v pops up a Windows dialog that asks "How do you want to open this file?", a fake nvm file (no extension) has been created in C:\Windows\System32.
Fix: Delete that file, then restart PowerShell.
pnpm : The term 'pnpm' is not recognized as the name of a cmdlet...
The repo pins pnpm@10.33.2 in packageManager. Corepack selects that exact version automatically:
corepack enable
corepack pnpm --version # should print 10.33.2Note: If
corepack enablefails withEPERMorEACCES(common when Node is installed underC:\Program Files\nodejs), use the npm-global fallback in the next section instead.
If Corepack is not available:
npm install -g pnpm@10.33.2
pnpm -v # should print 10.33.2During pnpm install you see:
Ignored build scripts: better-sqlite3, ...
Later, pnpm tools-dev run web fails with native-module errors.
pnpm 10 blocks lifecycle scripts by default. Allow the packages that need native compilation:
pnpm approve-buildsApprove any packages that appear in the list (commonly better-sqlite3, electron, and esbuild). Then re-run:
pnpm installNote:
better-sqlite3may fall back to compiling from source on Windows. Ifpnpm installhangs or fails on this package, make sure the Visual Studio Build Tools (step 4) are installed before runningpnpm install.
gyp ERR! find VS could not find Visual Studio
or
error MSB8036: The Windows SDK version was not found
Install Build Tools for Visual Studio 2022 with the following workloads:
- Desktop development with C++
- MSVC v143 - VS 2022 C++ x64/x86 build tools
- Windows 11 SDK (or Windows 10 SDK if you are on Windows 10)
Download: https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022
If you see gyp ERR! find Python, verify Python is installed:
python --version # or py --versionIf missing, install Python 3.x from python.org and ensure it's on PATH.
After installing all build tools, open a fresh PowerShell window and re-run pnpm install.
cannot be loaded because running scripts is disabled on this system.
On fresh Windows installs, PowerShell blocks script execution by default:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUserRestart PowerShell after changing the policy.
You have completed the steps above but are not sure how to launch the app.
From the repository root:
pnpm tools-dev run webExpected output ends with something like:
Open Design dev server ready
- Local: http://localhost:17573
The exact port may change; always read the terminal output.
Run these commands in PowerShell before opening an issue. Include the output in your report.
node -v
pnpm -v
where.exe pnpm
where.exe node
where.exe opencode
corepack --version
python --version # or py --version
Get-ExecutionPolicy -ListIf you want a double-click entry point on Windows, create a launch.bat file in the repo root with:
@echo off
cd /d %~dp0
corepack pnpm tools-dev run webThat keeps the launcher on the supported pnpm tools-dev run web path while still giving you a one-click start.
OpenCode is one of the local agent CLIs Open Design can drive. If you want to use it:
npm install -g opencode-ai
where.exe opencode # should show C:\Users\YOUR_USERNAME\AppData\Roaming\npm\opencode.cmd
opencode --versionIf Open Design still shows OpenCode as not installed in Settings → Execution mode, click Rescan after confirming the opencode.cmd directory is on your user PATH.