Python Version Requirements

Upsonic requires Python >=3.10. Here’s how to check your version:

python3 --version

If you need to update Python, visit python.org/downloads

Installing Upsonic

Now let’s get you set up! 🚀

1

Install Upsonic

Install Upsonic with all recommended tools using either method:

Terminal
pip install upsonic
2

Upgrade Upsonic (Existing Installations Only)

If you have an older version of Upsonic installed, you can upgrade it:

Terminal
pip install --upgrade Upsonic

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

3

Verify Installation

Check your installed versions:

Terminal
pip freeze | grep upsonic

You should see something like:

Output
upsonic==X.X.X

Installation successful! You’re ready to create your first Agent and Task.

Next Steps