force pip to install aider's deps

This commit is contained in:
Paul Gauthier 2024-09-26 11:47:05 -07:00
parent 6b6f682a94
commit 50fb95c8b1
2 changed files with 4 additions and 2 deletions

View file

@ -216,6 +216,8 @@ def get_pip_install(args):
"-m", "-m",
"pip", "pip",
"install", "install",
"--upgrade",
"--ignore-installed",
] ]
cmd += args cmd += args
return cmd return cmd

View file

@ -21,7 +21,7 @@ def install_from_main_branch(io):
io, io,
None, None,
"Install the development version of aider from the main branch?", "Install the development version of aider from the main branch?",
["--upgrade", "git+https://github.com/paul-gauthier/aider.git"], ["git+https://github.com/paul-gauthier/aider.git"],
self_update=True, self_update=True,
) )
@ -50,7 +50,7 @@ def install_upgrade(io, latest_version=None):
io, io,
None, None,
new_ver_text, new_ver_text,
["--upgrade", "aider-chat"], ["aider-chat"],
self_update=True, self_update=True,
) )