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:
31
README.md
31
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
|
curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/install-claude-code.sh | bash -s -- --manual
|
||||||
```
|
```
|
||||||
|
|
||||||
### Windows (WSL/Git Bash)
|
### Windows Installation Options
|
||||||
```bash
|
|
||||||
# 🎯 SuperCharge Claude Code (all customizations)
|
|
||||||
curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh | bash
|
|
||||||
|
|
||||||
# 🔧 Install Claude Code + Z.AI API
|
#### Option 1: WSL (Windows Subsystem for Linux) - **Recommended**
|
||||||
curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/install-claude-code.sh | bash
|
```powershell
|
||||||
|
# Open PowerShell or Command Prompt, then run:
|
||||||
# 📖 Show manual instructions (no installation)
|
wsl bash -c "curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh | bash"
|
||||||
curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/install-claude-code.sh | bash -s -- --manual
|
|
||||||
```
|
```
|
||||||
|
|
||||||
> **🪟 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.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user