Install From PyPI

eqty_sdk is published on the public Python Package Index (PyPI). No Eqty package-index URL or installation credentials are required.

pip

python -m pip install eqty_sdk

uv (project)

In a uv project, add the SDK as a normal dependency:

uv add eqty-sdk

This 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:

uv pip install eqty_sdk

uv pip install does not record the dependency. In a uv project, use uv add instead so a later uv sync retains it.

Poetry

poetry add eqty_sdk

Verify

python -c "import eqty_sdk; print(eqty_sdk.__file__)"

Next: Quick Start.