From f95a6c1a5a0d2035d9a302d65ab72d6978d4c8e7 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 14 Dec 2024 09:42:32 -0800 Subject: [PATCH] recommend aider-install --- aider/website/_includes/get-started.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/aider/website/_includes/get-started.md b/aider/website/_includes/get-started.md index efd0892e8..1dba32ccf 100644 --- a/aider/website/_includes/get-started.md +++ b/aider/website/_includes/get-started.md @@ -2,16 +2,15 @@ You can get started quickly like this: ```bash -python -m pip install -U aider-chat +python -m pip install aider-install +aider-install -# Change directory into a git repo +# Change directory into your code base cd /to/your/git/repo # Work with Claude 3.5 Sonnet on your repo -export ANTHROPIC_API_KEY=your-key-goes-here -aider +aider --anthropic-api-key=your-key-goes-here # Work with GPT-4o on your repo -export OPENAI_API_KEY=your-key-goes-here -aider +aider --openai-api-key=your-key-goes-here ```