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

# Installation

Install Hypertic to start building AI agents with support for multiple LLM providers, tools, memory, and streaming capabilities.

## Requirements

* Python 3.10 or higher
* pip or uv package manager

## Basic Installation

Install Hypertic using pip or uv:

<CodeGroup>
  ```bash pip theme={null} theme={null}
  pip install hypertic
  ```

  ```bash uv theme={null} theme={null}
  uv add hypertic
  ```
</CodeGroup>

## Additional Dependencies

Install additional packages with dependency groups:

<CodeGroup>
  ```bash OpenAI Support theme={null} theme={null}
  pip install hypertic[openai]
  ```

  ```bash ChromaDB Support theme={null} theme={null}
  pip install hypertic[chromadb]
  ```
</CodeGroup>

## Verify Installation

After installation, verify that Hypertic is installed correctly:

```bash theme={null} theme={null}
python -c "import hypertic; print(hypertic.__version__)"
```

## Next Steps

Now that you have Hypertic installed, you can get started by following the [quickstart guide](/quickstart) to build your first AI agent.
