From 55fee0471fa1cba34890777d3391f55e15a91731 Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Fri, 8 Dec 2023 12:10:07 +0100 Subject: [PATCH] fix(agent): Fix setup script - Remove `poetry install` that caused uninstall+reinstall of benchmark packages on every run --- autogpts/autogpt/setup | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/autogpts/autogpt/setup b/autogpts/autogpt/setup index c22f7da1..8263dce3 100755 --- a/autogpts/autogpt/setup +++ b/autogpts/autogpt/setup @@ -1,9 +1,8 @@ #!/bin/sh -poetry install --no-interaction - # Necessary to prevent forge and agbenchmark from breaking each others' install: # https://github.com/python-poetry/poetry/issues/6958 -POETRY_INSTALLER_PARALLEL=false poetry install --no-interaction --extras benchmark +POETRY_INSTALLER_PARALLEL=false \ +poetry install --no-interaction --extras benchmark echo "Setup completed successfully."