SOP 001: Installation & Setup
Fresh| Field | Value |
|---|---|
| SOP ID | SOP-001 |
| Version | 1.0 |
| Status | Active |
| Source | docs.warp.dev |
Overview
Install Warp Terminal, the Oz CLI, and authenticate to start using AI agents.
Prerequisites
- macOS 12+, Windows 10+, or Linux (Ubuntu 22.04+, Fedora 38+, Arch)
- Internet connection for authentication
- 500MB disk space
Procedure
Step 1: Install Warp Terminal
bash
brew install --cask warpbash
# Download from https://www.warp.dev/
# Open the .dmg and drag Warp to Applicationsbash
winget install Warp.Warpbash
# Add Warp repository (see docs.warp.dev for latest instructions)
sudo apt install warp-terminalbash
sudo yum install warp-terminalStep 2: Install the Oz CLI
The CLI is bundled with Warp. To make it globally accessible:
macOS:
- Open Warp
- Open Command Palette:
CMD+P - Search for and select "Install Oz CLI Command"
- Enter admin password if prompted
Windows:
- During installation, select "Add Warp to PATH"
- Or manually add the Warp installation directory to your system PATH
Standalone CLI (without Warp app):
bash
brew tap warpdotdev/warp
brew update
brew install --cask ozbash
sudo apt install oz-stableStep 3: Verify Installation
bash
oz --versionWARNING
If oz is not found, ensure it's in your PATH. On macOS, the CLI installs to /usr/local/bin.
Step 4: Authenticate
Interactive login (recommended for local machines):
bash
oz loginThis prints a sign-in URL. Open it in your browser to complete authentication.
API key authentication (for CI/CD, headless servers):
bash
export WARP_API_KEY="wk-xxx..."
oz agent run --prompt "hello"INFO
If you're already signed into the Warp desktop app, the CLI automatically reuses your credentials.
Step 5: Test Your Setup
bash
oz agent run --prompt "list the files in this directory and describe what they do"Verification Checklist
- [ ] Warp Terminal launches successfully
- [ ]
oz --versionreturns a version number - [ ]
oz logincompletes without errors - [ ]
oz agent run --prompt "hello"produces a response
Troubleshooting
| Issue | Solution |
|---|---|
oz: command not found | Re-run CLI installation or add to PATH manually |
| Browser doesn't open for login | Copy the URL from terminal and paste in browser |
| Authentication timeout | Check internet connection, try oz login again |
| Permission denied on macOS | Run CLI installation with admin privileges |