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

# Installation

> Install Hystersis SDK and CLI

# Installation

Install Hystersis using pip, npm, or build from source.

## Python SDK

```bash theme={null}
pip install hystersis
```

With async support:

```bash theme={null}
pip install "hystersis[async]"
```

## Node.js SDK

```bash theme={null}
npm install hystersis
```

## CLI Tool

```bash theme={null}
# Install globally
npm install -g hystersis

# Or with pip
pip install hystersis
```

## Build from Source

```bash theme={null}
git clone https://github.com/Himan-D/agent-memory.git
cd agent-memory

# Build Go server
go build -o hystersis ./cmd/server

# Build Python SDK
cd sdk/python
pip install -e .

# Build Node.js SDK
cd sdk/nodejs
npm install
npm run build
```

## Requirements

* Python 3.9+ or Node.js 18+
* Access to Hystersis API or self-hosted server

## Verify Installation

```python theme={null}
from hystersis import Hystersis

client = Hystersis()
print(client.health())
```
