๐ฆ SuperClaude Installation Guide
March 22, 2026 ยท View on GitHub
๐ฆ SuperClaude Installation Guide
Transform Claude Code with 30 Commands, 20 Agents, 7 Modes & 8 MCP Servers
Quick Install โข Requirements โข Methods โข Verify โข Troubleshoot
โก Quick Installation
Choose Your Preferred Method
| Method | Command | Platform | Best For |
|---|---|---|---|
| ๐ pipx | pipx install SuperClaude && SuperClaude install | Linux/macOS | โ Recommended - Isolated environment |
| ๐ฆ pip | pip install SuperClaude && SuperClaude install | All | Traditional Python setups |
| ๐ npm | npm install -g @bifrost_inc/superclaude && superclaude install | All | Node.js developers |
| ๐ง Dev | git clone ... && uv pip install -e ".[dev]" | All | Contributors & developers |
๐ Requirements
โ Required
|
๐ก Optional
|
๐ Quick System Check
# Run this to check all requirements at once
python3 --version && echo "โ
Python OK" || echo "โ Python missing"
claude --version && echo "โ
Claude Code OK" || echo "โ Claude Code missing"
node --version 2>/dev/null && echo "โ
Node.js OK (optional)" || echo "โ ๏ธ Node.js missing (optional)"
git --version 2>/dev/null && echo "โ
Git OK (optional)" || echo "โ ๏ธ Git missing (optional)"
๐ Installation Methods
Method 1: pipx (Recommended)
|
โ Advantages:
๐ Best for:
|
Method 2: pip (Traditional)
|
โ Advantages:
๐ Best for:
|
Method 3: npm (Cross-platform)
|
โ Advantages:
๐ Best for:
|
Method 4: Development Installation
|
โ Advantages:
๐ Best for:
|
๐๏ธ Installation Options
Customize Your Installation
| Option | Command | Description |
|---|---|---|
| Interactive | SuperClaude install | Guided setup with prompts |
| Specific Components | SuperClaude install --components core mcp modes | Install only what you need |
| Preview Mode | SuperClaude install --dry-run | See what will be installed |
| Force Install | SuperClaude install --force --yes | Skip all confirmations |
| List Components | SuperClaude install --list-components | View available components |
โ Verification
Step 1: Check Installation
# Verify SuperClaude version
python3 -m SuperClaude --version
# Expected: SuperClaude 4.3.0
# List installed components
SuperClaude install --list-components
# Expected: List of available components
Step 2: Test in Claude Code
# Open Claude Code and try these commands:
/sc:brainstorm "test project" # Should trigger discovery questions
/sc:analyze README.md # Should provide structured analysis
@agent-security "review code" # Should activate security specialist
Step 3: What's Installed
| Location | Contents | Size |
|---|---|---|
~/.claude/ | Framework files | ~50MB |
~/.claude/CLAUDE.md | Main entry point | ~2KB |
~/.claude/*.md | Behavioral instructions | ~200KB |
~/.claude/claude-code-settings.json | MCP configurations | ~5KB |
๐ ๏ธ Management
| ๐ฆ Update | ๐พ Backup | ๐๏ธ Uninstall |
|---|---|---|
|
|
|
๐ง Troubleshooting
โ PEP 668 Error (Python Package Management)
This error occurs on systems with externally managed Python environments.
Solutions (in order of preference):
# Option 1: Use pipx (Recommended)
pipx install SuperClaude
# Option 2: User installation
pip install --user SuperClaude
# Option 3: Virtual environment
python3 -m venv superclaude-env
source superclaude-env/bin/activate # Linux/macOS
# or
superclaude-env\Scripts\activate # Windows
pip install SuperClaude
# Option 4: Force (use with caution)
pip install --break-system-packages SuperClaude
โ Command Not Found
If SuperClaude command is not found after installation:
# Check if package is installed
python3 -m pip show SuperClaude
# Run using Python module
python3 -m SuperClaude install
# Add to PATH (if using --user)
export PATH="$HOME/.local/bin:$PATH"
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc # Linux
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc # macOS
โ Claude Code Not Found
If Claude Code is not installed or not in PATH:
- Download from https://claude.ai/code
- Install following platform instructions
- Verify with:
claude --version - Restart terminal after installation
โ Permission Denied
For permission errors during installation:
# Use user installation
pip install --user SuperClaude
# Or use sudo (not recommended)
sudo pip install SuperClaude
# Better: use pipx
pipx install SuperClaude
โ Missing Python or pip
Linux (Ubuntu/Debian):
sudo apt update
sudo apt install python3 python3-pip python3-venv
macOS:
# Install Homebrew first if needed
brew install python3
Windows:
- Download from python.org
- Check "Add Python to PATH" during installation
- Restart terminal after installation
๐ Next Steps
Your Learning Journey
| ๐ฑ Start Here | ๐ฟ Expand Skills | ๐ฒ Master Framework |
|---|---|---|
|
First Week:
|
Week 2-3: |
Advanced: |
๐ Installation Complete!
You now have access to:
30 Commands โข 20 AI Agents โข 7 Behavioral Modes โข 8 MCP Servers
Ready to start? Try /sc:brainstorm in Claude Code for your first SuperClaude experience!