mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 09:44:59 +00:00
24 lines
359 B
Markdown
24 lines
359 B
Markdown
---
|
|
title: Installation
|
|
has_children: true
|
|
nav_order: 20
|
|
---
|
|
|
|
# Quick start
|
|
|
|
```
|
|
$ pip install aider-chat
|
|
|
|
# To work with GPT-4o
|
|
$ export OPENAI_API_KEY=your-key-goes-here
|
|
$ aider
|
|
|
|
# To work with Claude 3 Opus:
|
|
$ export ANTHROPIC_API_KEY=your-key-goes-here
|
|
$ aider --opus
|
|
```
|
|
|
|
Or read the detailed [installation instructions](/docs/install/install.html).
|
|
|
|
|
|
|