Installation with pipx

How to use pip to install Stoobly

Prerequisite

Install supported Python version

Our official Python support is 3.10, 3.11, and 3.12.

To install a specific Python version, first install pyenv.

1

Install specific Python version

pyenv install 3.12.3
pyenv local 3.12.3
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

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:

pipx upgrade stoobly-agent

Verify

stoobly-agent --help

Next Steps

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

Last updated

Was this helpful?