> ## Documentation Index
> Fetch the complete documentation index at: https://docs.warpscale.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Install the Warpscale Python SDK

> Install the warpscale Python package.

The probe and the CLI capture GPU and system telemetry. The Python SDK adds what only your code knows: how far along the run is, and what it is training.

## Before you start

* Python 3.9 or newer.

## Install the SDK

Install it into the same environment as your training script.

```bash theme={null}
pip install warpscale
```

See [Report training progress](/training/python-sdk) to use it.

## Upgrade

```bash theme={null}
pip install --upgrade warpscale
```

The SDK versions independently of the probe and the CLI — there is no matched-release requirement.

## Uninstall

```bash theme={null}
pip uninstall warpscale
```

Remove the import and the calls from your training script too.
