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

# Installation

> Install the Anam Python SDK

## Install from PyPI

```bash theme={"system"}
pip install anam
```

Or with [uv](https://docs.astral.sh/uv/):

```bash theme={"system"}
uv add anam
```

## Optional dependencies

To include display utilities (OpenCV video display, sounddevice audio playback) for local testing:

```bash theme={"system"}
pip install anam[display]
```

## Requirements

* Python 3.10 or higher

## Verify installation

```python theme={"system"}
import anam
print(anam.__version__)
```
