Downloading the Python Agent
The SeaLights Python agent is published on PyPI and installed via pip. There is no binary to download — the agent and all its dependencies are resolved by the package manager.

Choosing an Installation Strategy
There are three ways to specify which version to install. Choose based on your stability and operational requirements:
Latest
Quick start, dev/sandbox environments, POC
Specific version ⭐
Production pipelines — set via API (recommended) or hardcoded
The agent depends on the cryptography package, which requires OpenSSL libraries.
On Linux, this is typically available out of the box.
On Windows, you may need to install OpenSSL and ensure it is referenced in your
LIBandINCLUDEenvironment variables.
Strategy 1: Install the Latest Version
Installs the most recent published release at runtime. Suitable for development environments where you always want the newest capabilities and can tolerate potential breaking changes between runs.
Strategy 2: Specific Version (Recommended)
API Endpoint
Authentication: Authorization: Bearer <your-agent-token>
Response: JSON object with a version field, e.g. {"version": "2.10.5"}
Last updated
Was this helpful?

