Package Managers
Install eqty_sdk from PyPI with pip, uv or Poetry.
eqty_sdk is published on the public Python Package Index (PyPI) .
No Eqty package-index URL or installation credentials are required.
pip
bash
python -m pip install eqty_sdkuv (project)
In a uv project, add the SDK as a normal dependency:
bash
uv add eqty-sdkThis records the dependency in pyproject.toml and updates the lockfile, so a
later uv sync reproduces the environment.
uv (no project)
To install into an activated environment without changing a project file:
bash
uv pip install eqty_sdkuv pip install does not record the dependency. In a uv project, use uv add
instead so a later uv sync retains it.
Poetry
bash
poetry add eqty_sdkVerify
bash
python -c "import eqty_sdk; print(eqty_sdk.__file__)"Next: Quick Start .