docs/reference/common-issues.md
Problem Solving Guide: Most frequent issues with practical solutions.
Problem: /sc:brainstorm doesn't work
Solution: Restart Claude Code completely
Test: /sc:brainstorm "test" should ask questions
python3 -m SuperClaude --version # Should show 4.1.5
# If not working:
# For pipx users
pipx upgrade SuperClaude
# For pip users
pip install --upgrade SuperClaude
# Then reinstall
python3 -m SuperClaude install
# Permission denied / PEP 668 errors:
# Option 1: Use pipx (recommended)
pipx install SuperClaude
# Option 2: Use pip with --user
pip install --user SuperClaude
# Option 3: Fix permissions
sudo chown -R $USER ~/.claude
/sc:analyze . --no-mcp # Test without MCP servers
node --version # Check Node.js 16+ if needed
python3 -m SuperClaude install --components core commands agents modes --force
Windows:
set CLAUDE_CONFIG_DIR=%USERPROFILE%\.claude
python -m SuperClaude install --install-dir "%CLAUDE_CONFIG_DIR%"
macOS:
brew install python3 node
pip3 install SuperClaude
Linux:
sudo apt install python3 python3-pip nodejs
pip3 install SuperClaude
python3 -m SuperClaude --version returns 4.1.5/sc:brainstorm "test" works in Claude CodeSuperClaude install --list-components shows componentsSee Troubleshooting Guide for advanced diagnostics.