From 3edb46d791b90250ad36c9ea6e02f27c77a0bab9 Mon Sep 17 00:00:00 2001 From: grandoloye2107 Date: Mon, 16 Mar 2026 23:06:03 -0400 Subject: [PATCH] Add Windows WSL installation guide for Foundry --- src/pages/sdk/foundry/index.mdx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/pages/sdk/foundry/index.mdx b/src/pages/sdk/foundry/index.mdx index 885e99d..42e2c4a 100644 --- a/src/pages/sdk/foundry/index.mdx +++ b/src/pages/sdk/foundry/index.mdx @@ -22,7 +22,19 @@ Install regular `foundryup`: ```bash curl -L https://foundry.paradigm.xyz | bash +``:::tip Windows Users +The command above does not work on Windows. You need to use WSL (Windows Subsystem for Linux) first. + +1. Open PowerShell as Administrator and run: +```bash +wsl --install ``` +2. Restart your computer when prompted +3. Open **Ubuntu** from the Start menu +4. Now run the curl command above inside Ubuntu — it will work correctly + +> The verification warning `Verification is still pending` that appears during deployment is normal and not an error — your contract will verify successfully within 15 seconds. +:::` Or if you already have `foundryup` installed: