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>
This commit is contained in:
Anatolii Kmetiuk
2023-11-21 11:28:10 +01:00
committed by GitHub
parent 712b2db3ef
commit 84f6694066

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