Installing the Zelos SDK¶
Warning
A minimum version of Python 3.10 is required! Run python --version
to ensure your Python is 3.10 or greater.
Creating a virtualenv using uv¶
Ensure uv is installed, or follow the Installing uv guide.
uv venv .venv
source .venv/bin/activate
uv pip install zelos-sdk
Adding to an existing project using uv¶
uv add zelos-sdk
Creating a virtualenv using venv and pip¶
python3 -m venv .venv --upgrade-deps
source .venv/bin/activate
pip install zelos-sdk
Common Error: "No matching distribution found for zelos-sdk"¶
The following error is commonly caused by using a python version less than 3.10. Ensure your Python version is 3.10 or above by running python --version
.
ERROR: Could not find a version that satisfies the requirement zelos-sdk (from versions: none)
ERROR: No matching distribution found for zelos-sdk