For the complete documentation index, see llms.txt. This page is also available as Markdown.

Installation with pipx

How to use pip to install Stoobly

Prerequisite

Install supported Python version

Our official Python support is 3.12, 3.13, and 3.14.

To install a specific Python version, first install pyenv.

1

Install specific Python version

pyenv install 3.13.0
pyenv local 3.13.0
2

Switch Python version

export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init --path)"
eval "$(pyenv init -)"

Install pipx

To install pipx, either follow the official installation steps or run the following commands:

brew install pipx
pipx ensurepath
source ~/.bashrc
python3 -m pip install --user pipx
python3 -m pipx ensurepath
source ~/.bashrc

Install

To install the agent, run:

pipx install stoobly-agent --python python3

This will use pipx to download the agent from our PyPI Python Package Index.

Update

To update the agent, run:

Verify

Next Steps

You're all setup! Depending on your use case, you may want to take a look at:

Last updated