Files
Auto-GPT/autogpts/autogpt/setup
Reinier van der Leer 55fee0471f fix(agent): Fix setup script
- Remove `poetry install` that caused uninstall+reinstall of benchmark packages on every run
2023-12-08 12:10:07 +01:00

9 lines
269 B
Bash
Executable File

#!/bin/sh
# 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
echo "Setup completed successfully."