mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-08 05:34:59 +00:00
19 lines
393 B
Markdown
19 lines
393 B
Markdown
|
|
If you already have python 3.8-3.13 installed, you can get started quickly like this:
|
|
|
|
```bash
|
|
python -m pip install aider-install
|
|
aider-install
|
|
|
|
# Change directory into your codebase
|
|
cd /to/your/project
|
|
|
|
# DeepSeek
|
|
aider --model deepseek --api-key deepseek=<key>
|
|
|
|
# Claude 3.7 Sonnet
|
|
aider --model sonnet --api-key anthropic=<key>
|
|
|
|
# o3-mini
|
|
aider --model o3-mini --api-key openai=<key>
|
|
```
|