docs: update quickstart to use requirements.txt

This commit is contained in:
octane0411 2026-01-11 01:34:29 +08:00
parent ddecf7d845
commit 6f1c74ad6a
2 changed files with 4 additions and 6 deletions

View File

@ -37,11 +37,12 @@ A progressive tutorial that demystifies AI coding agents like Kode, Claude Code,
## Quick Start
```bash
pip install anthropic python-dotenv
# Install dependencies
pip install -r requirements.txt
# Configure your API
cp .env.example .env
# Edit .env with your API key
# Edit .env with your API key (supports Anthropic, OpenAI, Gemini, etc.)
# Run any version
python v0_bash_agent.py # Minimal

View File

@ -1,8 +1,5 @@
# AI Provider Dependencies
anthropic>=0.25.0
openai>=1.0.0
python-dotenv>=1.0.0
# Existing Dependencies
pygame==2.5.2
numpy==1.24.3