From e712b670841c1c5af85d89464649312884f52ae7 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 1 Jul 2024 20:42:48 -0300 Subject: [PATCH] copy --- README.md | 8 ++++---- website/_includes/get-started.md | 8 ++++---- website/docs/install/install.md | 8 ++++++++ website/index.md | 8 ++++---- 4 files changed, 20 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 2d036b08f..9a5d29dac 100644 --- a/README.md +++ b/README.md @@ -40,13 +40,13 @@ $ pip install aider-chat # Change directory into a git repo $ cd /to/your/git/repo -# Work with GPT-4o on your repo -$ export OPENAI_API_KEY=your-key-goes-here -$ aider - # Work with Claude 3.5 Sonnet on your repo $ export ANTHROPIC_API_KEY=your-key-goes-here $ aider + +# Work with GPT-4o on your repo +$ export OPENAI_API_KEY=your-key-goes-here +$ aider ``` diff --git a/website/_includes/get-started.md b/website/_includes/get-started.md index 5e756f846..5321c2d75 100644 --- a/website/_includes/get-started.md +++ b/website/_includes/get-started.md @@ -7,11 +7,11 @@ $ pip install aider-chat # Change directory into a git repo $ cd /to/your/git/repo -# Work with GPT-4o on your repo -$ export OPENAI_API_KEY=your-key-goes-here -$ aider - # Work with Claude 3.5 Sonnet on your repo $ export ANTHROPIC_API_KEY=your-key-goes-here $ aider + +# Work with GPT-4o on your repo +$ export OPENAI_API_KEY=your-key-goes-here +$ aider ``` diff --git a/website/docs/install/install.md b/website/docs/install/install.md index ec0206e39..9936e1e9d 100644 --- a/website/docs/install/install.md +++ b/website/docs/install/install.md @@ -24,6 +24,14 @@ Note that this is different than being a "ChatGPT Plus" subscriber. To work with Anthropic's models like Claude 3 Opus you need a paid [Anthropic API key](https://docs.anthropic.com/claude/reference/getting-started-with-the-api). +## Manage your python environment + +Using a Python +[virtual environment](https://docs.python.org/3/library/venv.html) +is recommended. +Or, you could consider +[installing aider using pipx](/docs/install/pipx.html). + ## Windows install ``` diff --git a/website/index.md b/website/index.md index a8abc461a..35060ea1a 100644 --- a/website/index.md +++ b/website/index.md @@ -54,13 +54,13 @@ $ pip install aider-chat # Change directory into a git repo $ cd /to/your/git/repo -# Work with GPT-4o on your repo -$ export OPENAI_API_KEY=your-key-goes-here -$ aider - # Work with Claude 3.5 Sonnet on your repo $ export ANTHROPIC_API_KEY=your-key-goes-here $ aider + +# Work with GPT-4o on your repo +$ export OPENAI_API_KEY=your-key-goes-here +$ aider ```