Developers

Troubleshooting the CLI

Common Issues

Command not found

# Check installation
pip show chutes

# Try with Python module
python -m chutes --help

Authentication errors

# Re-register if needed
chutes register

# Check config file
cat ~/.chutes/config.ini

Build failures

# Try local build for debugging
chutes build my_app:chute --local --debug

# Check image syntax
python -c "from my_app import chute; print(chute.image)"

Deployment issues

# Verify image exists and is built
chutes images list --name my-image
chutes images get my-image

# Check chute status
chutes chutes get my-chute

Debug Mode

Enable debug logging for detailed output:

chutes build my_app:chute --debug

Getting Help

Built-in Help

# General help
chutes --help

# Command-specific help
chutes build --help
chutes deploy --help
chutes chutes list --help

Support Resources


Continue to specific command documentation: