2025-08-18 12:55:14 +02:00
|
|
|
# Common Issues - Quick Reference
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
> **Quick Fix Guide**: The 10 most common SuperClaude issues with rapid solutions. Each issue is designed to be resolved in under 2 minutes.
|
2025-08-18 12:45:06 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**For Detailed Help**: If these quick fixes don't work, see the [Comprehensive Troubleshooting Guide](troubleshooting.md) for detailed solutions.
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
> **Command Context**: **🖥️ Terminal Commands** (for installation) vs **💬 Claude Code Commands** (`/sc:` for development)
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
## Top 10 Quick Fixes
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
### 1. 🖥️ Permission Denied During Installation
|
|
|
|
|
**Error**: `ERROR: Permission denied: '/home/user/.claude/CLAUDE.md'`
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Quick Fix**:
|
2025-08-18 11:58:55 +02:00
|
|
|
```bash
|
2025-08-18 12:55:14 +02:00
|
|
|
sudo chown -R $USER ~/.claude && chmod 755 ~/.claude
|
2025-08-18 11:58:55 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Alternative**: Use user installation: `pip install --user SuperClaude`
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
[Detailed Help →](troubleshooting.md#common-installation-problems)
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
---
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
### 2. 🖥️ Python Version Too Old
|
|
|
|
|
**Error**: `ERROR: SuperClaude requires Python 3.8+`
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Quick Fix**:
|
2025-08-18 11:58:55 +02:00
|
|
|
```bash
|
2025-08-18 12:55:14 +02:00
|
|
|
python3 --version # Check current version
|
|
|
|
|
# If < 3.8, install newer Python:
|
|
|
|
|
sudo apt install python3.9 python3.9-pip # Linux
|
|
|
|
|
python3.9 -m pip install SuperClaude
|
2025-08-18 11:58:55 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
[Detailed Help →](troubleshooting.md#python-version-compatibility)
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
---
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
### 3. 🖥️ Component Installation Failed
|
|
|
|
|
**Error**: `ERROR: Component 'mcp' installation failed`
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Quick Fix**:
|
|
|
|
|
```bash
|
|
|
|
|
python3 -m SuperClaude install --components core
|
|
|
|
|
python3 -m SuperClaude install --components mcp --force
|
2025-08-18 11:58:55 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
[Detailed Help →](troubleshooting.md#component-installation-failures)
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
---
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
### 4. 💬 Commands Not Working in Claude Code
|
|
|
|
|
**Error**: `/sc:help` command not recognized
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Quick Fix**:
|
|
|
|
|
1. Restart Claude Code completely
|
|
|
|
|
2. Verify installation: `cat ~/.claude/CLAUDE.md | head -5`
|
|
|
|
|
3. If empty, reinstall: `python3 -m SuperClaude install --force`
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
[Detailed Help →](troubleshooting.md#command-execution-problems)
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
---
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
### 5. 🖥️ "SuperClaude" Command Not Found
|
|
|
|
|
**Error**: `command not found: SuperClaude`
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Quick Fix**:
|
2025-08-18 11:58:55 +02:00
|
|
|
```bash
|
2025-08-18 12:55:14 +02:00
|
|
|
# Try lowercase:
|
|
|
|
|
superclaude --version
|
|
|
|
|
# Or use module form:
|
2025-08-18 11:58:55 +02:00
|
|
|
python3 -m SuperClaude --version
|
|
|
|
|
```
|
|
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
[Detailed Help →](troubleshooting.md#command-not-found)
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
---
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
### 6. 🖥️ Windows Path Problems
|
|
|
|
|
**Error**: `Cannot find file 'C:\Users\name\.claude\CLAUDE.md'`
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Quick Fix**:
|
2025-08-18 11:58:55 +02:00
|
|
|
```cmd
|
|
|
|
|
set CLAUDE_CONFIG_DIR=C:\Users\%USERNAME%\.claude
|
|
|
|
|
python -m SuperClaude install --install-dir "%CLAUDE_CONFIG_DIR%"
|
|
|
|
|
```
|
|
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
[Detailed Help →](troubleshooting.md#windows-platform-issues)
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
---
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
### 7. 💬 Commands Hang or Timeout
|
|
|
|
|
**Error**: Commands start but never complete
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Quick Fix**:
|
|
|
|
|
1. Press Ctrl+C to cancel
|
|
|
|
|
2. Try smaller scope: `/sc:analyze src/` instead of entire project
|
|
|
|
|
3. Restart Claude Code session
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
[Detailed Help →](troubleshooting.md#command-timeout-or-hanging)
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
---
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
### 8. 🖥️ Node.js Missing for MCP Servers
|
|
|
|
|
**Error**: `Node.js not found` during MCP installation
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Quick Fix**:
|
2025-08-18 11:58:55 +02:00
|
|
|
```bash
|
2025-08-18 12:55:14 +02:00
|
|
|
# Linux/macOS:
|
|
|
|
|
curl -fsSL https://nodejs.org/dist/v18.17.0/node-v18.17.0-linux-x64.tar.xz | tar -xJ
|
|
|
|
|
# Windows:
|
|
|
|
|
winget install OpenJS.NodeJS
|
2025-08-18 11:58:55 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
[Detailed Help →](troubleshooting.md#mcp-server-connection-problems)
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
---
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
### 9. 💬 Memory/Resource Errors
|
|
|
|
|
**Error**: Insufficient memory or resources
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Quick Fix**:
|
2025-08-18 11:58:55 +02:00
|
|
|
```bash
|
2025-08-18 12:55:14 +02:00
|
|
|
# Clear temporary data:
|
|
|
|
|
rm -rf ~/.claude/tmp/ ~/.claude/cache/
|
|
|
|
|
# Work with smaller projects
|
|
|
|
|
# Close other applications
|
2025-08-18 11:58:55 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
[Detailed Help →](troubleshooting.md#performance-problems-and-optimization)
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
---
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
### 10. 🖥️ Fresh Installation Needed
|
|
|
|
|
**Error**: Multiple issues, corrupted installation
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Quick Fix**:
|
2025-08-18 11:58:55 +02:00
|
|
|
```bash
|
|
|
|
|
rm -rf ~/.claude/
|
2025-08-18 12:55:14 +02:00
|
|
|
pip uninstall SuperClaude
|
|
|
|
|
pip install SuperClaude
|
2025-08-18 11:58:55 +02:00
|
|
|
python3 -m SuperClaude install --fresh
|
|
|
|
|
```
|
|
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
[Detailed Help →](troubleshooting.md#reset-and-recovery-procedures)
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
---
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
## Emergency Recovery
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Complete Reset** (when everything is broken):
|
2025-08-18 11:58:55 +02:00
|
|
|
```bash
|
2025-08-18 12:55:14 +02:00
|
|
|
rm -rf ~/.claude/ && pip uninstall SuperClaude && pip install SuperClaude && python3 -m SuperClaude install --fresh
|
2025-08-18 11:58:55 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Test Installation**:
|
2025-08-18 11:58:55 +02:00
|
|
|
```bash
|
2025-08-18 12:55:14 +02:00
|
|
|
python3 -m SuperClaude --version && echo "✅ Installation OK"
|
2025-08-18 11:58:55 +02:00
|
|
|
```
|
|
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
**Test Claude Code Integration**:
|
|
|
|
|
Type `/sc:help` in Claude Code - should show available commands.
|
2025-08-18 11:58:55 +02:00
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
## Need More Help?
|
2025-08-18 11:58:55 +02:00
|
|
|
|
2025-08-18 12:55:14 +02:00
|
|
|
- **🔍 Detailed Solutions**: [Comprehensive Troubleshooting Guide](troubleshooting.md)
|
|
|
|
|
- **📖 Setup Help**: [Installation Guide](../Getting-Started/installation.md)
|
|
|
|
|
- **🆘 Report Issues**: [GitHub Issues](https://github.com/SuperClaude-Org/SuperClaude_Framework/issues)
|
|
|
|
|
- **📧 Emergency Contact**: anton.knoery@gmail.com
|