From 82fa8accdd7243aa71b85c85812b295c0d0d16f8 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 8 Aug 2024 13:17:42 -0300 Subject: [PATCH] pip install -> python -m pip install --- README.md | 12 ++++++------ aider/website/_includes/get-started.md | 12 ++++++------ aider/website/index.md | 12 ++++++------ 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 9b0b12ab7..25a9399f4 100644 --- a/README.md +++ b/README.md @@ -35,18 +35,18 @@ cog.out(open("aider/website/_includes/get-started.md").read()) You can get started quickly like this: ``` -$ pip install aider-chat +python -m pip install aider-chat # Change directory into a git repo -$ cd /to/your/git/repo +cd /to/your/git/repo # Work with Claude 3.5 Sonnet on your repo -$ export ANTHROPIC_API_KEY=your-key-goes-here -$ aider +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 +export OPENAI_API_KEY=your-key-goes-here +aider ``` diff --git a/aider/website/_includes/get-started.md b/aider/website/_includes/get-started.md index 5321c2d75..15a873e3a 100644 --- a/aider/website/_includes/get-started.md +++ b/aider/website/_includes/get-started.md @@ -2,16 +2,16 @@ You can get started quickly like this: ``` -$ pip install aider-chat +python -m pip install aider-chat # Change directory into a git repo -$ cd /to/your/git/repo +cd /to/your/git/repo # Work with Claude 3.5 Sonnet on your repo -$ export ANTHROPIC_API_KEY=your-key-goes-here -$ aider +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 +export OPENAI_API_KEY=your-key-goes-here +aider ``` diff --git a/aider/website/index.md b/aider/website/index.md index c7e4f1a25..af9e14ad3 100644 --- a/aider/website/index.md +++ b/aider/website/index.md @@ -49,18 +49,18 @@ cog.out(open("aider/website/_includes/get-started.md").read()) You can get started quickly like this: ``` -$ pip install aider-chat +python -m pip install aider-chat # Change directory into a git repo -$ cd /to/your/git/repo +cd /to/your/git/repo # Work with Claude 3.5 Sonnet on your repo -$ export ANTHROPIC_API_KEY=your-key-goes-here -$ aider +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 +export OPENAI_API_KEY=your-key-goes-here +aider ```