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

# Installation

> Install the Airstore CLI on macOS or Linux

## Install the CLI

```bash theme={null}
curl -sSL https://airstore.dev/install.sh | sh
```

The install script automatically:

* Downloads the correct binary for your platform
* Installs FUSE dependencies
* Configures permissions

## System requirements

| Platform              | Status      |
| --------------------- | ----------- |
| macOS (Apple Silicon) | Supported   |
| macOS (Intel)         | Supported   |
| Linux (x86\_64)       | Supported   |
| Linux (ARM64)         | Supported   |
| Windows               | Coming soon |

## Verify installation

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

You should see output like:

```
airstore 0.1.0
```

## Next steps

<Card title="Quickstart" icon="rocket" href="/quickstart">
  Connect your services and mount your first source view.
</Card>

***

<Accordion title="Alternative installation methods">
  ### Build from source

  ```bash theme={null}
  git clone https://github.com/beam-cloud/airstore
  cd airstore
  make build
  ```

  ### Manual dependency installation

  If the install script doesn't work for your system, you can install dependencies manually:

  **FUSE** (required for filesystem mounting):

  <CodeGroup>
    ```bash macOS theme={null}
    brew install fuse-t
    ```

    ```bash Ubuntu/Debian theme={null}
    sudo apt install fuse3
    ```

    ```bash Fedora theme={null}
    sudo dnf install fuse3
    ```

    ```bash Arch theme={null}
    sudo pacman -S fuse3
    ```
  </CodeGroup>

  **Node.js** (only for [local mode](/deployment/local)):

  ```bash theme={null}
  # macOS
  brew install node

  # Ubuntu/Debian
  sudo apt install nodejs npm
  ```
</Accordion>
