mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-07 13:15:00 +00:00
25 lines
782 B
Markdown
25 lines
782 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 code base
|
|
cd /to/your/project
|
|
|
|
# Work with DeepSeek via DeepSeek's API
|
|
aider --model deepseek --api-key deepseek=your-key-goes-here
|
|
|
|
# Work with Claude 3.7 Sonnet via Anthropic's API
|
|
aider --model sonnet --api-key anthropic=your-key-goes-here
|
|
|
|
# Work with GPT-4o via OpenAI's API
|
|
aider --model gpt-4o --api-key openai=your-key-goes-here
|
|
|
|
# Work with Sonnet via OpenRouter's API
|
|
aider --model openrouter/anthropic/claude-3.7-sonnet --api-key openrouter=your-key-goes-here
|
|
|
|
# Work with DeepSeek via OpenRouter's API
|
|
aider --model openrouter/deepseek/deepseek-chat --api-key openrouter=your-key-goes-here
|
|
```
|