Common Issues - Quick Reference
August 23, 2025 ยท View on GitHub
Quick Fix Guide: The 10 most common SuperGemini issues with rapid solutions. Each issue is designed to be resolved in under 2 minutes.
For Detailed Help: If these quick fixes don't work, see the Comprehensive Troubleshooting Guide for detailed solutions.
Command Context: ๐ฅ๏ธ Terminal Commands (for installation) vs ๐ฌ Gemini CLI Commands (
/sg:for development)
Top 10 Quick Fixes
1. ๐ฅ๏ธ Permission Denied During Installation
Error: ERROR: Permission denied: '/home/user/.gemini/GEMINI.md'
Quick Fix:
sudo chown -R $USER ~/.gemini && chmod 755 ~/.gemini
Alternative: Use user installation: pip install --user SuperGemini
2. ๐ฅ๏ธ Python Version Too Old
Error: ERROR: SuperGemini requires Python 3.8+
Quick Fix:
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 SuperGemini
3. ๐ฅ๏ธ Component Installation Failed
Error: ERROR: Component 'mcp' installation failed
Quick Fix:
python3 -m SuperGemini install --components core
python3 -m SuperGemini install --components mcp --force
4. ๐ฌ Commands Not Working in Gemini CLI
Error: /sg:help command not recognized
Quick Fix:
- Restart Gemini CLI completely
- Verify installation:
cat ~/.gemini/GEMINI.md | head -5 - If empty, reinstall:
python3 -m SuperGemini install --force
5. ๐ฅ๏ธ "SuperGemini" Command Not Found
Error: command not found: SuperGemini
Quick Fix:
# Try lowercase:
superclaude --version
# Or use module form:
python3 -m SuperGemini --version
6. ๐ฅ๏ธ Windows Path Problems
Error: Cannot find file 'C:\Users\name\.gemini\GEMINI.md'
Quick Fix:
set CLAUDE_CONFIG_DIR=C:\Users\%USERNAME%\.gemini
python -m SuperGemini install --install-dir "%CLAUDE_CONFIG_DIR%"
7. ๐ฌ Commands Hang or Timeout
Error: Commands start but never complete
Quick Fix:
- Press Ctrl+C to cancel
- Try smaller scope:
/sg:analyze src/instead of entire project - Restart Gemini CLI session
8. ๐ฅ๏ธ Node.js Missing for MCP Servers
Error: Node.js not found during MCP installation
Quick Fix:
# 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
9. ๐ฌ Memory/Resource Errors
Error: Insufficient memory or resources
Quick Fix:
# Clear temporary data:
rm -rf ~/.gemini/tmp/ ~/.gemini/cache/
# Work with smaller projects
# Close other applications
10. ๐ฅ๏ธ Fresh Installation Needed
Error: Multiple issues, corrupted installation
Quick Fix:
rm -rf ~/.gemini/
pip uninstall SuperGemini
pip install SuperGemini
python3 -m SuperGemini install --fresh
Emergency Recovery
Complete Reset (when everything is broken):
rm -rf ~/.gemini/ && pip uninstall SuperGemini && pip install SuperGemini && python3 -m SuperGemini install --fresh
Test Installation:
python3 -m SuperGemini --version && echo "โ
Installation OK"
Test Gemini CLI Integration:
Type /sg:help in Gemini CLI - should show available commands.
Need More Help?
- ๐ Detailed Solutions: Comprehensive Troubleshooting Guide
- ๐ Setup Help: Installation Guide
- ๐ Report Issues: GitHub Issues
- ๐ง Emergency Contact: anton.knoery@gmail.com