mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
55 lines
1,002 B
Markdown
55 lines
1,002 B
Markdown
---
|
|
title: Installation
|
|
has_children: true
|
|
nav_order: 20
|
|
description: How to install and get started pair programming with aider.
|
|
---
|
|
|
|
# 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.
|
|
|
|
<div class="video-container">
|
|
<video controls>
|
|
<source src="/assets/install.mp4" type="video/mp4">
|
|
<a href="/assets/install.mp4">Installing aider</a>
|
|
</video>
|
|
</div>
|
|
|
|
<style>
|
|
.video-container {
|
|
position: relative;
|
|
padding-bottom: 101.89%; /* 1080 / 1060 = 1.0189 */
|
|
height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.video-container video {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
|
|
|
|
|