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

# Installation

> Install the Gateway Python SDK.

The SDK is distributed via SFTP during onboarding. It is **not** published on PyPI.

```bash theme={null}
pip install gateway.whl
```

Install with the extra for your cloud provider:

```bash theme={null}
# For AWS
pip install "gateway[aws]"

# For Azure
pip install "gateway[azure]"
```

## Verify installation

```python theme={null}
from gateway import __version__
print(__version__)
```

## Next steps

See [Usage](./usage) to start fact-checking claims.
