Updating & Uninstalling
Keep Kibo up to date or remove it completely.
Updating Kibo
To update Kibo to the latest version:
cd ~/kibo
./update.shThis will pull the latest changes and update dependencies.
Uninstalling Kibo
To completely remove Kibo from your system:
cd ~/kibo
./uninstall.shWarning: This will remove the Kibo directory and all its contents. Your AI models will also be deleted.
Manual Cleanup
If you prefer to remove everything manually:
# Remove Kibo directory
rm -rf ~/kibo
# Remove AI models
rm -rf ~/.agent_models
# Remove model config
rm -f ~/.agent_model_config.jsonTroubleshooting
Installation fails with "Python not found"
Make sure Python 3.10+ is installed and available in your PATH. On Ubuntu/Debian: sudo apt install python3 python3-venv
Model download fails
Check your internet connection. You can try again later or use the default Needle 2 model which doesn't require a download.
Permission denied on run.sh
Make the script executable: chmod +x run.sh