From 30238dbbd526a8f2d91564cf9f5e00e49cf12755 Mon Sep 17 00:00:00 2001 From: Manav Bokinala Date: Fri, 4 Oct 2024 20:05:33 -0700 Subject: [PATCH 1/2] docs: update instructions for pipx installation to include boto3 inject step --- aider/website/docs/install/pipx.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/aider/website/docs/install/pipx.md b/aider/website/docs/install/pipx.md index 85cd8abec..632eeca07 100644 --- a/aider/website/docs/install/pipx.md +++ b/aider/website/docs/install/pipx.md @@ -26,6 +26,13 @@ Install [pipx](https://pipx.pypa.io/stable/) then just do: pipx install aider-chat ``` +## pipx installation with AWS Bedrock provider +The AWS Bedrock provider requires the `boto3` package in order to function correctly. To use aider installed via `pipx` with AWS Bedrock, you must add the `boto3` dependency to aider's virtual environment by running + +``` +pipx inject aider boto3 +``` + ## pipx on replit From ce253fec8fc9aae7dccb8e606726984bc544b31f Mon Sep 17 00:00:00 2001 From: Manav Bokinala Date: Tue, 15 Oct 2024 12:59:08 -0700 Subject: [PATCH 2/2] move pipx bedrock boto3 instructions to bedrock.md --- aider/website/docs/install/pipx.md | 7 ------- aider/website/docs/llms/bedrock.md | 8 ++++++++ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/aider/website/docs/install/pipx.md b/aider/website/docs/install/pipx.md index 632eeca07..85cd8abec 100644 --- a/aider/website/docs/install/pipx.md +++ b/aider/website/docs/install/pipx.md @@ -26,13 +26,6 @@ Install [pipx](https://pipx.pypa.io/stable/) then just do: pipx install aider-chat ``` -## pipx installation with AWS Bedrock provider -The AWS Bedrock provider requires the `boto3` package in order to function correctly. To use aider installed via `pipx` with AWS Bedrock, you must add the `boto3` dependency to aider's virtual environment by running - -``` -pipx inject aider boto3 -``` - ## pipx on replit diff --git a/aider/website/docs/llms/bedrock.md b/aider/website/docs/llms/bedrock.md index bad090647..677b050b8 100644 --- a/aider/website/docs/llms/bedrock.md +++ b/aider/website/docs/llms/bedrock.md @@ -39,6 +39,14 @@ export AWS_PROFILE=your-profile You can add these to your [.env file](/docs/config/dotenv.html). +## Bedrock with `pipx` installation + +The AWS Bedrock provider requires the `boto3` package in order to function correctly. To use aider installed via `pipx` with AWS Bedrock, you must add the `boto3` dependency to aider's virtual environment by running + +``` +pipx inject aider boto3 +``` + ## Running Aider with Bedrock