Based on real-world installation experience and community feedback.
Problem: Running installer via pipe doesn't allow password input.
Solution: Use the -S flag with sudo:
# Instead of:
curl -fsSL ... | bash
# Use:
curl -fsSL ... -o /tmp/clawos.sh
{ echo "YOUR_PASSWORD"; } | sudo -S bash /tmp/clawos.shProblem: Package conflicts during apt install.
Solution:
# Fix broken packages first
sudo apt-get install -f -y
sudo dpkg --configure -a
sudo apt-get autoremove -y
# Then retry installationProblem: Install script killed during Python package installation.
Solution: Use the resume script:
cd ~/.clawos-runtime
bash scripts/install-resume.shProblem: Another service is using port 7070.
Solution:
# Find what's using the port
sudo lsof -i :7070
# Kill it or use alternative port
export CLAWOS_PORT=7071
bash scripts/dev_boot.shProblem: Clawd (command execution service) not starting.
Solution:
cd ~/.clawos-runtime
source venv/bin/activate
python3 -m services.clawd.mainProblem: Voice pipeline issues - missing wake word model or audio.
Solution:
# Check audio devices
arecord -l
# Install wake word model if missing
bash scripts/install_wake_word.sh
# Or disable voice in config
export CLAWOS_VOICE_ENABLED=falseProblem: Missing chromadb module.
Solution:
cd ~/.clawos-runtime
source venv/bin/activate
pip install chromadbProblem: Ollama service not started.
Solution:
# Start Ollama
ollama serve
# Or run in background
ollama serve &Problem: Network issues or model name incorrect.
Solution:
# Check available models
ollama list
# Pull manually
ollama pull qwen2.5:7b
# Verify
ollama run qwen2.5:7b "Hello"Issue: Long-running agent runs (>2min) stop showing typing indicator.
Status: Fixed in recent PR - update to latest version.
Issue: Tasks accepted but agents don't execute them.
Workaround: Restart agentd service:
pkill -f agentd
python3 -m services.agentd.mainIssue: Voice assistant sometimes ignores local agent. Workaround: Disable cloud voice in settings, ensure local pipeline is default.
# Full health check
curl http://localhost:7070/api/health | jq
# Check all services
bash scripts/clawos-status.sh
# View logs
tail -f ~/.clawos-runtime/logs/clawosd.log
# Restart all services
pkill -f "python3 -m services"
bash scripts/dev_boot.sh- Discord: https://discord.com/invite/clawd
- GitHub Issues: https://github.com/xbrxr03/clawos/issues
- Documentation: https://docs.clawos.ai
Last updated: 2026-04-26