mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 14:55:00 +00:00
30 lines
500 B
Markdown
30 lines
500 B
Markdown
---
|
|
title: Installation
|
|
has_children: true
|
|
nav_order: 20
|
|
---
|
|
|
|
# Quick start
|
|
|
|
You can get started quickly like this:
|
|
|
|
```
|
|
$ 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 see
|
|
[full installation instructions](/docs/install/install.html)
|
|
for more details,
|
|
or the
|
|
[usage instructions](https://aider.chat/docs/usage.html) to start coding with aider.
|
|
|
|
|
|
|