mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 10:14:59 +00:00
Implement playwright installation with dependencies and use system python executable.
This commit is contained in:
parent
c7884c94f6
commit
e1a9fd69e6
1 changed files with 2 additions and 1 deletions
|
@ -33,7 +33,8 @@ def install_playwright(io):
|
|||
return True
|
||||
|
||||
pip_cmd = utils.get_pip_install(["aider-chat[playwright]"])
|
||||
chromium_cmd = "playwright install --with-deps chromium".split()
|
||||
chromium_cmd = "-m playwright install --with-deps chromium"
|
||||
chromium_cmd = [sys.executable] + chromium_cmd.split()
|
||||
|
||||
cmds = ""
|
||||
if not has_pip:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue