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 <noreply@anthropic.com>
This commit is contained in:
uroma
2026-01-22 18:55:57 +00:00
Unverified
parent f65d981aa9
commit 447b1840eb

View File

@@ -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.
---