Docs
Installation
Install Quadrastack CLI on macOS, Linux, or Windows
Installation
Install Quadrastack CLI on your operating system.
macOS / Linux
- Download the binary from the releases page
- 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/
- Make it executable:
sudo chmod +x /usr/local/bin/quadrastack
- Add to PATH (if needed):
The directory
/usr/local/binis usually in your PATH, but if not:
# Bash (~/.bashrc)
export PATH="/usr/local/bin:$PATH"
# Zsh (~/.zshrc)
export PATH="/usr/local/bin:$PATH"
- Verify:
quadrastack --version
Windows
- Download from releases.
- Extract to a folder (e.g.,
C:\Program Files\Quadrastack). - Add to PATH and restart terminal.
- 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:
- Quickstart - Create your first API test
- Playbook Guide - Learn requests, workflows, and scenarios
- CLI Reference - Explore all commands and flags