Skip to main content

Install the CLI

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

PlatformStatus
macOS (Apple Silicon)Supported
macOS (Intel)Supported
Linux (x86_64)Supported
Linux (ARM64)Supported
WindowsComing soon

Verify installation

airstore --version
You should see output like:
airstore 0.1.0

Next steps

Quickstart

Connect your services and mount your first source view.

Build from source

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):
brew install fuse-t
Node.js (only for local mode):
# macOS
brew install node

# Ubuntu/Debian
sudo apt install nodejs npm