From 447b1840eb113cdb2f93018a788f94a5b2508ce8 Mon Sep 17 00:00:00 2001 From: uroma Date: Thu, 22 Jan 2026 18:55:57 +0000 Subject: [PATCH] docs: Add clear Windows installation options with WSL wrapper Added 3 Windows installation methods: 1. WSL wrapper: wsl bash -c "curl ... | bash" 2. Git Bash instructions 3. Download & Run with Invoke-WebRequest Added warning: Do NOT run curl directly in PowerShell. Co-Authored-By: Claude --- README.md | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 929a53c..43b6f47 100644 --- a/README.md +++ b/README.md @@ -22,19 +22,30 @@ curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/install-claude-code.sh | bash -s -- --manual ``` -### Windows (WSL/Git Bash) -```bash -# 🎯 SuperCharge Claude Code (all customizations) -curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh | bash +### Windows Installation Options -# 🔧 Install Claude Code + Z.AI API -curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/install-claude-code.sh | bash - -# 📖 Show manual instructions (no installation) -curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/install-claude-code.sh | bash -s -- --manual +#### Option 1: WSL (Windows Subsystem for Linux) - **Recommended** +```powershell +# Open PowerShell or Command Prompt, then run: +wsl bash -c "curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh | bash" ``` -> **🪟 Windows Users:** Run commands in WSL (Windows Subsystem for Linux), Git Bash, or download scripts and run with `bash script.sh` +#### Option 2: Git Bash +```bash +# Open Git Bash and run: +curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh | bash +``` + +#### Option 3: Download & Run +```powershell +# Download the script +Invoke-WebRequest -Uri "https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh" -OutFile "supercharge.sh" + +# Run in WSL +wsl bash supercharge.sh +``` + +> **⚠️ Important:** Do NOT run curl commands directly in PowerShell. The syntax is different. Use WSL or Git Bash for bash commands. ---