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

# Installation

> Install the uniac CLI and the Python SDK.

## CLI

```bash theme={null}
npm i -g @uniac/cli
```

`@uniac/cli` is a JS shim that resolves to a platform-specific package containing the Go binary. npm installs the matching one based on your `os` and `cpu`.

Users on platforms without a prebuilt binary (anything other than darwin/linux × arm64/x64) can grab a tar.gz from the [releases page](https://github.com/uniac-ai/Uniac/releases) and put `uniac` on `$PATH` manually.

## SDK

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

## Verify

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

## Requirements

* Python 3.11 or newer
* Node 16 or newer (to install the CLI via npm)
* Docker (required for `uniac dev`)
