Optional steps

The steps below are completely optional.

Install git

Aider works best if you have git installed. Here are instructions for installing git in various environments.

Get your API key

To work with OpenAI’s models like GPT-4o or o1-preview you need a paid OpenAI API key. Note that this is different than being a “ChatGPT Plus” subscriber.

To work with Anthropic’s models like Claude 3.5 Sonnet you need a paid Anthropic API key.

Working with other LLMs

Aider works best with Claude 3.5 Sonnet, DeepSeek V3, o1 & GPT-4o and can connect to almost any LLM.

Store your api keys

You can store your api keys in configuration or env files and they will be loaded automatically whenever you run aider.

Enable Playwright

Aider supports adding web pages to the chat with the /web <url> command. When you add a url to the chat, aider fetches the page and scrapes its content.

By default, aider uses the httpx library to scrape web pages, but this only works on a subset of web pages. Some sites explicitly block requests from tools like httpx. Others rely heavily on javascript to render the page content, which isn’t possible using only httpx.

Aider works best with all web pages if you install Playwright’s chromium browser and its dependencies:

playwright install --with-deps chromium

See the Playwright for Python documentation for additional information.

Enable voice coding

Aider supports coding with your voice using the in-chat /voice command. Aider uses the PortAudio library to capture audio. Installing PortAudio is completely optional, but can usually be accomplished like this:

  • For Windows, there is no need to install PortAudio.
  • For Mac, do brew install portaudio
  • For Linux, do sudo apt-get install libportaudio2
    • Some linux environments may also need sudo apt install libasound2-plugins

Add aider to your IDE/editor

You can use aider’s --watch-files mode to integrate with any IDE or editor.

There are a number of 3rd party aider plugins for various IDE/editors. It’s not clear how well they are tracking the latest versions of aider, so it may be best to just run the latest aider in a terminal alongside your editor and use --watch-files.

NeoVim

joshuavial provided a NeoVim plugin for aider:

https://github.com/joshuavial/aider.nvim

VS Code

You can run aider inside a VS Code terminal window. There are a number of 3rd party aider plugins for VSCode.

Other editors

If you are interested in creating an aider plugin for your favorite editor, please let us know by opening a GitHub issue.

Install the development version of aider

If you want the very latest development version of aider you can install it like this:

aider --install-main-branch