Python Version Requirements

Chainless requires Python >=3.10. You can check your current version using:

python3 --version

Need to upgrade? Visit python.org/downloads

Installing Chainless

Let’s get you up and running with Chainless! ⚙️

1

Install Chainless

Install Chainless using pip:

Terminal
pip install chainless
2

Upgrade Chainless (If Already Installed)

If you already have Chainless installed and want the latest version:

Terminal
pip install --upgrade chainless

Skip this step if you’re doing a fresh install.

3

Verify Installation

Confirm Chainless is installed correctly:

Terminal
pip freeze | grep chainless

You should see something like:

Output
chainless==X.X.X

Installation successful! You’re ready to create your first Tool, Agent, and TaskFlow.

Next Steps