๐Ÿ“ฆ 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

Version Python Platform

Quick Install โ€ข Requirements โ€ข Methods โ€ข Verify โ€ข Troubleshoot


โšก Quick Installation

Choose Your Preferred Method

MethodCommandPlatformBest For
๐Ÿ pipxpipx install SuperClaude && SuperClaude installLinux/macOSโœ… Recommended - Isolated environment
๐Ÿ“ฆ pippip install SuperClaude && SuperClaude installAllTraditional Python setups
๐ŸŒ npmnpm install -g @bifrost_inc/superclaude && superclaude installAllNode.js developers
๐Ÿ”ง Devgit clone ... && uv pip install -e ".[dev]"AllContributors & developers

๐Ÿ“‹ Requirements

โœ… Required

ComponentVersionCheck Command
Python3.8+python3 --version
pipLatestpip --version
Claude CodeLatestclaude --version
Disk Space50MBdf -h

๐Ÿ’ก Optional

ComponentPurposeCheck Command
Node.jsMCP Serversnode --version
GitVersion Controlgit --version
pipxIsolated Installpipx --version
RAMPerformance1GB recommended
๐Ÿ” 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

Detailed Installation Instructions

# Install pipx if not present
python3 -m pip install --user pipx
python3 -m pipx ensurepath

# Install SuperClaude
pipx install SuperClaude

# Run the installer
SuperClaude install

โœ… Advantages:

  • Isolated environment
  • No dependency conflicts
  • Clean uninstall
  • Automatic PATH setup

๐Ÿ“ Best for:

  • Linux/macOS users
  • Clean system installs
  • Multiple Python projects

Method 2: pip (Traditional)

# Standard installation
pip install SuperClaude

# Or user installation
pip install --user SuperClaude

# Run the installer
SuperClaude install

โœ… Advantages:

  • Works everywhere
  • Familiar to Python users
  • Direct installation

๐Ÿ“ Best for:

  • Windows users
  • Virtual environments
  • Quick setup

Method 3: npm (Cross-platform)

# Global installation
npm install -g @bifrost_inc/superclaude

# Run the installer
superclaude install

โœ… Advantages:

  • Cross-platform
  • NPM ecosystem
  • JavaScript familiar

๐Ÿ“ Best for:

  • Node.js developers
  • NPM users
  • Cross-platform needs

Method 4: Development Installation

# Clone repository
git clone https://github.com/SuperClaude-Org/SuperClaude_Framework.git
cd SuperClaude_Framework

# Install uv if not present
curl -LsSf https://astral.sh/uv/install.sh | sh

# Install in development mode
uv pip install -e ".[dev]"

# Test installation
SuperClaude install --dry-run

โœ… Advantages:

  • Latest features
  • Contribute to project
  • Full source access
  • Fast installation (uv)

๐Ÿ“ Best for:

  • Contributors
  • Custom modifications
  • Testing new features

๐ŸŽ›๏ธ Installation Options

Customize Your Installation

OptionCommandDescription
InteractiveSuperClaude installGuided setup with prompts
Specific ComponentsSuperClaude install --components core mcp modesInstall only what you need
Preview ModeSuperClaude install --dry-runSee what will be installed
Force InstallSuperClaude install --force --yesSkip all confirmations
List ComponentsSuperClaude install --list-componentsView available components

โœ… Verification

Confirm Successful Installation

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

LocationContentsSize
~/.claude/Framework files~50MB
~/.claude/CLAUDE.mdMain entry point~2KB
~/.claude/*.mdBehavioral instructions~200KB
~/.claude/claude-code-settings.jsonMCP configurations~5KB

๐Ÿ› ๏ธ Management

๐Ÿ“ฆ Update ๐Ÿ’พ Backup ๐Ÿ—‘๏ธ Uninstall
# Update to latest
pip install --upgrade SuperClaude
SuperClaude update
# Create backup
SuperClaude backup --create

# Restore backup
SuperClaude backup --restore [file]
# Remove framework
SuperClaude uninstall

# Uninstall package
pip uninstall SuperClaude

๐Ÿ”ง 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:

  1. Download from https://claude.ai/code
  2. Install following platform instructions
  3. Verify with: claude --version
  4. 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!

Quick Start