> ## 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.

# Install the Anam Python SDK

> Install the Anam Python SDK, verify your environment, and prepare a Python application to stream audio and video with an avatar.

## 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__)
```
