CCC Commander Installation
CCC Commander (cccmd) Installation
Section titled “CCC Commander (cccmd) Installation”🚀 Quick Install
Section titled “🚀 Quick Install”Empfohlen: pipx
Section titled “Empfohlen: pipx”# pipx installieren (falls nicht vorhanden)python3 -m pip install --user pipxpython3 -m pipx ensurepath
# cccmd installierenpipx install cccmd
# ✅ Verfügbar als: ccc und cccmdccc version🔄 Nach der Installation: Version Management
Section titled “🔄 Nach der Installation: Version Management”Erste Schritte - Überprüfe deine Installation:
ccc version# → CCC Commander (cccmd) v0.3.2# → Mode: pipx (PyPI package)Für Development/Vollständige Features:
# Set preferred mode via config (empfohlen)ccc config mode set dev# → ✅ Preferred mode changed: auto → dev# → 🔄 To activate: export PATH=/usr/local/bin:$PATH
# Aktivieren für diese Sessionexport PATH=/usr/local/bin:$PATHccc version # → v0.3.2-dev, Mode: devWas sind die Modi?
- pipx Mode: Stable PyPI package, grundlegende Commands
- dev Mode: Vollständiges Session-Management, alle Features
- apt Mode: System package (kommend)
Alternative: pip
Section titled “Alternative: pip”pip install --user cccmd📦 Platform-spezifische Installation
Section titled “📦 Platform-spezifische Installation”Ubuntu (PPA)
Section titled “Ubuntu (PPA)”# PPA hinzufügensudo add-apt-repository ppa:collective-context/cccsudo apt update
# Installationsudo apt install cccmdDebian
Section titled “Debian”Für Debian nutze die Python-Installation via pipx oder pip (siehe oben).
Ein natives APT-Repository kommt Q4 2025!
# Via pipxpipx install cccmd
# Oder via Homebrew (coming soon)# brew install collective-context/tap/cccmdWindows
Section titled “Windows”# Via pipxpipx install cccmd
# Oder via pippip install --user cccmd🔧 Development Installation
Section titled “🔧 Development Installation”# Repository klonengit clone https://github.com/collective-context/ccccd ccc
# Development Installationpip install -e ".[dev]"
# Tests ausführenpytest✅ Installation verifizieren
Section titled “✅ Installation verifizieren”# Version prüfencccmd --version
# Hilfe anzeigencccmd --help
# Konfiguration testencccmd config check📁 Installationspfade
Section titled “📁 Installationspfade”cccmd folgt der XDG Base Directory Specification:
| Component | Pfad |
|---|---|
| Binary | ~/.local/bin/cccmd |
| Config | ~/.config/ccc/ |
| Data | ~/.local/share/ccc/ |
| Cache | ~/.cache/ccc/ |
🆘 Troubleshooting
Section titled “🆘 Troubleshooting”Command not found
Section titled “Command not found”# PATH prüfenecho $PATH | grep -q "$HOME/.local/bin" || echo "PATH needs update"
# PATH updatenexport PATH="$HOME/.local/bin:$PATH"echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrcPermission denied
Section titled “Permission denied”# Mit --user flag installierenpip install --user cccmd
# Oder pipx verwenden (empfohlen)pipx install cccmd📈 Updates
Section titled “📈 Updates”# Mit pipxpipx upgrade cccmd
# Mit pippip install --upgrade cccmd
# Mit apt (Ubuntu)sudo apt update && sudo apt upgrade cccmd