> ## Documentation Index
> Fetch the complete documentation index at: https://ekacare-consent-url-fix.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Install Echo - open-source agent framework

[Echo](https://github.com/eka-care/echo-sdk) is open-source and available on GitHub.

## Requirements

* Python 3.11+

## Install from PyPI

```bash theme={null}
pip install echo-sdk
```

Or with uv:

```bash theme={null}
uv pip install echo-sdk
```

## Install from GitHub

```bash theme={null}
pip install git+https://github.com/eka-care/echo.git
```

## Verify

```python theme={null}
import echo
print(f"Echo SDK version: {echo.__version__}")
```

## Next Steps

<CardGroup cols={2}>
  <Card title="Configuration" icon="gear" href="/ai-tools/agent-kit/configuration">
    Configure LLMs and tools
  </Card>

  <Card title="Quickstart" icon="rocket" href="/ai-tools/agent-kit/quickstart">
    Build your first agent
  </Card>
</CardGroup>
