QuadrastackQuadrastack
Documentation

Docs

Installation

Install Quadrastack CLI on macOS, Linux, or Windows

Installation

Install Quadrastack CLI on your operating system.

macOS / Linux

  1. Download the binary from the releases page
  2. Install:
# macOS (Intel)
tar -xzf quadrastack-darwin-amd64.tar.gz
sudo mv quadrastack /usr/local/bin/

# macOS (Apple Silicon)
tar -xzf quadrastack-darwin-arm64.tar.gz
sudo mv quadrastack /usr/local/bin/

# Linux
tar -xzf quadrastack-linux-amd64.tar.gz
sudo mv quadrastack /usr/local/bin/
  1. Make it executable:
sudo chmod +x /usr/local/bin/quadrastack
  1. Add to PATH (if needed): The directory /usr/local/bin is usually in your PATH, but if not:
# Bash (~/.bashrc)
export PATH="/usr/local/bin:$PATH"

# Zsh (~/.zshrc)
export PATH="/usr/local/bin:$PATH"
  1. Verify:
quadrastack --version

Windows

  1. Download from releases.
  2. Extract to a folder (e.g., C:\Program Files\Quadrastack).
  3. Add to PATH and restart terminal.
  4. Verify: quadrastack --version

Upgrading

To upgrade, simply replace the existing binary with the new version.

Shell Completion

Add this line to your shell profile (~/.bashrc or ~/.zshrc):

# Bash
eval "$(quadrastack completion bash)"

# Zsh
eval "$(quadrastack completion zsh)"

VS Code Extension

For an enhanced development experience with syntax highlighting, validation, and autocomplete, install the Quadrastack VS Code extension. See the VS Code Installation Guide.

Next Steps

Now that you have Quadrastack CLI installed:

Installation - Quadrastack Docs