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

# Install GPR

> Install the gpr CLI on macOS, Linux, or Windows.

The `gpr` binary is the daemon that pairs your machine with the mobile app and launches coding agents.

## macOS and Linux

```bash theme={null}
curl -fsSL https://getpullrequest.com/install | bash
```

Installs to `~/.local/bin/gpr` and adds that directory to your shell PATH when needed.

## Windows

```powershell theme={null}
irm 'https://getpullrequest.com/install.ps1' | iex
```

Installs to `%USERPROFILE%\.local\bin\gpr.exe`.

## Verify

```bash theme={null}
gpr --version
```

```bash theme={null}
gpr doctor
```

## What gets installed

| Path               | Purpose                            |
| ------------------ | ---------------------------------- |
| `~/.local/bin/gpr` | CLI + daemon binary                |
| `~/.gpr/`          | Daemon state, logs, workspace data |

State is separate from the binary. Uninstalling without `--purge` leaves `~/.gpr/` in place.

## Optional install overrides

| Variable          | Effect                          |
| ----------------- | ------------------------------- |
| `GPR_VERSION`     | Pin a release instead of latest |
| `GPR_INSTALL_DIR` | Change install directory        |
| `GPR_FORCE=1`     | Overwrite an existing binary    |
| `GPR_SKIP_PATH=1` | Do not modify shell PATH        |

## Next

[Connect your machine](/docs/get-started/connect-your-machine) with `gpr setup`.
