From 8eed1b6ca5bb65e0389271ccd9d1dfd32d462628 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 27 Sep 2024 10:34:09 -0700 Subject: [PATCH] fix: Update pip install command to use --upgrade-strategy only-if-needed --- aider/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/utils.py b/aider/utils.py index 7937f5c3e..0a2ab4c62 100644 --- a/aider/utils.py +++ b/aider/utils.py @@ -217,7 +217,7 @@ def get_pip_install(args): "pip", "install", "--upgrade", - "--ignore-installed", + "--upgrade-strategy only-if-needed", ] cmd += args return cmd