Skip to main content

Installation methods

The Timbal CLI provides a command-line interface for managing Timbal projects, including initialization, building, deploying, and other project management tasks.
Use curl to download and execute the installation script:
curl -LsSf https://timbal.ai/install.sh | sh
If your system doesn’t have curl, you can use wget:
wget -qO- https://timbal.ai/install.sh | sh
The installation script may be inspected before use:
curl -LsSf https://timbal.ai/install.sh | less
Alternatively, the installer or binaries can be downloaded directly from GitHub.

Upgrading

To upgrade the CLI to the latest version, you can either run:
timbal upgrade
Or re-run the installation script:
curl -LsSf https://timbal.ai/install.sh | sh

Uninstallation

To remove the CLI, delete the binary and the ~/.timbal data directory:
rm ~/.local/bin/timbal
rm -rf ~/.timbal

Python Package

If you want to use Timbal directly in your Python projects or integrate it into an existing codebase, you can install the Python package directly.
Before adding the package, ensure you have python>=3.11 installed.
Using pip:
pip install timbal
Or with uv:
uv add timbal
Alternatively, if you want the latest changes and want to experiment with beta features, you can clone the repository and install from source:
git clone https://github.com/timbal-ai/timbal.git
cd timbal
pip install -e .
Next Steps: You’re ready to create your first Timbal project! Continue to the quickstart guide to build your first AI agent.