Installation¶
Requirements¶
| Requirement | Version | Purpose |
|---|---|---|
| Python | 3.10+ | Runtime |
| Claude Code CLI | Latest | AI execution engine |
Platform Support¶
- macOS & Linux: Fully supported
- Windows: Use WSL2
Install ClaudeSprint¶
Using pip (Recommended)¶
Using pipx (Isolated Environment)¶
From Source¶
Install Claude Code CLI¶
ClaudeSprint requires the Claude Code CLI to be installed and authenticated.
-
Install following the official guide
-
Authenticate:
-
Verify:
Verify Installation¶
Run the doctor command to check your environment:
This checks:
- Python version
- Claude CLI installation
- Claude CLI authentication
- Optional dependencies
Use --fix to auto-install missing optional packages:
Optional Dependencies¶
| Package | Purpose | Install |
|---|---|---|
agent-browser |
Browser automation for E2E testing | npm install -g agent-browser |
nicegui |
Real-time dashboard | Included by default |
Browser Automation Setup¶
For projects with UI testing:
# Install agent-browser
npm install -g agent-browser
# Install browser dependencies
agent-browser install # macOS
agent-browser install --with-deps # Linux
Next Steps¶
- Quickstart Guide - Set up your first project