Include poetry install step in dockerless agent setup instructions (#6203)

Without that step, there is an error:
"ModuleNotFoundError: No module named
'auto_gpt_plugin_template'"

Co-authored-by: Reinier van der Leer <pwuts@agpt.co>
pull/6330/head
Anatolii Kmetiuk 2023-11-21 11:28:10 +01:00 committed by GitHub
parent 712b2db3ef
commit 84f6694066
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -58,9 +58,10 @@
First we need to create a virtual environment to run in.
```shell
pip3 install poetry
python -m venv .venv
source .venv/bin/activate
pip3 install --upgrade pip
poetry install
```
!!! warning