# Installation

> Install the jurniti CLI on macOS, Linux, or Windows with a single line.

Part of the jurniti developer docs — canonical page: https://www.jurniti.com/docs/installation · full docs index: https://www.jurniti.com/docs/llms.txt

## Install the CLI

The `jurniti` CLI is a single static binary. Pick whichever install fits your
setup — they all land the same binary on your `PATH`.

### One-line install (recommended)

macOS and Linux, x86_64 and arm64:

```sh
curl -fsSL https://jurniti.com/install.sh | sh
```

The script detects your OS and architecture, downloads the matching release,
verifies its checksum, and drops `jurniti` into a directory on your `PATH`.

### On Windows

In PowerShell (x64 or arm64):

```powershell
irm https://jurniti.com/install.ps1 | iex
```

Same idea: it detects your architecture, downloads and checksum-verifies the
matching `jurniti.exe`, installs it under `%LOCALAPPDATA%\Programs\jurniti`, and
adds that directory to your user `PATH`. Open a new terminal afterward so the
updated `PATH` takes effect.

### Verify

```bash
jurniti --version
```

> **macOS, Linux & Windows:** Prebuilt binaries ship for macOS (Apple Silicon + Intel), Linux (x86_64 + arm64), and Windows (x64 + arm64).

Next: walk the [Quickstart](/docs/quickstart) to log in and bring a VM up.
