From 96ecb55cc8ee010e57a982d1778eb74e5b148b5a Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 8 Aug 2024 13:18:21 -0300 Subject: [PATCH] pip install -> python -m pip install --- aider/website/_posts/2023-10-22-repomap.md | 2 +- aider/website/_posts/2024-03-08-claude-3.md | 2 +- aider/website/_posts/2024-05-02-browser.md | 2 +- aider/website/_posts/2024-07-01-sonnet-not-lazy.md | 2 +- aider/website/_posts/2024-07-25-new-models.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/aider/website/_posts/2023-10-22-repomap.md b/aider/website/_posts/2023-10-22-repomap.md index 8046680d8..13073a448 100644 --- a/aider/website/_posts/2023-10-22-repomap.md +++ b/aider/website/_posts/2023-10-22-repomap.md @@ -209,7 +209,7 @@ that aider originally used. Switching from ctags to tree-sitter provides a bunch of benefits: - The map is richer, showing full function call signatures and other details straight from the source files. -- Thanks to `py-tree-sitter-languages`, we get full support for many programming languages via a python package that's automatically installed as part of the normal `pip install aider-chat`. +- Thanks to `py-tree-sitter-languages`, we get full support for many programming languages via a python package that's automatically installed as part of the normal `python -m pip install aider-chat`. - We remove the requirement for users to manually install `universal-ctags` via some external tool or package manager (brew, apt, choco, etc). - Tree-sitter integration is a key enabler for future work and capabilities for aider. diff --git a/aider/website/_posts/2024-03-08-claude-3.md b/aider/website/_posts/2024-03-08-claude-3.md index 1c80ecd9f..e20e68e32 100644 --- a/aider/website/_posts/2024-03-08-claude-3.md +++ b/aider/website/_posts/2024-03-08-claude-3.md @@ -23,7 +23,7 @@ making it the best available model for pair programming with AI. To use Claude 3 Opus with aider: ``` -pip install aider-chat +python -m pip install aider-chat export ANTHROPIC_API_KEY=sk-... aider --opus ``` diff --git a/aider/website/_posts/2024-05-02-browser.md b/aider/website/_posts/2024-05-02-browser.md index b6a07a2ad..bb6a90df4 100644 --- a/aider/website/_posts/2024-05-02-browser.md +++ b/aider/website/_posts/2024-05-02-browser.md @@ -46,7 +46,7 @@ It also supports [connecting to almost any LLM](https://aider.chat/docs/llms.htm Use the `--browser` switch to launch the browser version of aider: ``` -pip install aider-chat +python -m pip install aider-chat export OPENAI_API_KEY= # Mac/Linux setx OPENAI_API_KEY # Windows, restart shell after setx diff --git a/aider/website/_posts/2024-07-01-sonnet-not-lazy.md b/aider/website/_posts/2024-07-01-sonnet-not-lazy.md index 58d1ad51b..87c96964c 100644 --- a/aider/website/_posts/2024-07-01-sonnet-not-lazy.md +++ b/aider/website/_posts/2024-07-01-sonnet-not-lazy.md @@ -116,7 +116,7 @@ for more details, but you can get started quickly with aider and Sonnet like this: ``` -$ pip install aider-chat +$ python -m pip install aider-chat $ export ANTHROPIC_API_KEY= # Mac/Linux $ setx ANTHROPIC_API_KEY # Windows, restart shell after setx diff --git a/aider/website/_posts/2024-07-25-new-models.md b/aider/website/_posts/2024-07-25-new-models.md index 3b8db272e..68572d30f 100644 --- a/aider/website/_posts/2024-07-25-new-models.md +++ b/aider/website/_posts/2024-07-25-new-models.md @@ -30,7 +30,7 @@ included for scale. You can code with all of these models using aider like this: ``` -$ pip install aider-chat +$ python -m pip install aider-chat # Change directory into a git repo to work on $ cd /to/your/git/repo