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

# Installation

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

Install the `neetocal` binary with the command for your platform, then [verify the installation](#verify-the-installation).

<CodeGroup>
  ```bash macOS theme={"system"}
  brew trust neetozone/tap
  brew install neetozone/tap/neetocal
  ```

  ```bash Linux theme={"system"}
  curl -fsSL https://neetocal.com/cli/install.sh | sh
  ```

  ```powershell Windows theme={"system"}
  irm https://neetocal.com/cli/install.ps1 | iex
  ```
</CodeGroup>

The shell script and Windows installers download the latest release for your architecture (`amd64` or `arm64`), extract it, and add `neetocal` to your `PATH`.

## Other install methods

<AccordionGroup>
  <Accordion title="macOS — shell script">
    ```bash theme={"system"}
    curl -fsSL https://neetocal.com/cli/install.sh | sh
    ```

    Installs to `/usr/local/bin` (may prompt for `sudo`). Homebrew installs update with `brew upgrade neetocal`.
  </Accordion>

  <Accordion title="Windows — Command Prompt (CMD)">
    ```cmd theme={"system"}
    curl -fsSL https://neetocal.com/cli/install.cmd -o install.cmd && install.cmd
    ```

    Extracts to `%LOCALAPPDATA%\Programs\neetocal` and adds it to your user `PATH`. Equivalent to the PowerShell method.
  </Accordion>
</AccordionGroup>

## Verify the installation

Restart your terminal, then run:

```bash theme={"system"}
neetocal --help
```

You should see the list of available commands. To check the installed version:

```bash theme={"system"}
neetocal version
```

<Tip>
  Next, [log in](/cli/authentication) to a workspace and run `neetocal doctor`
  to confirm the CLI can reach NeetoCal.
</Tip>
