aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGravatar Anatolii Kmetiuk <anatoliikmt@proton.me> 2023-11-21 11:28:10 +0100
committerGravatar GitHub <noreply@github.com> 2023-11-21 11:28:10 +0100
commit84f66940669a9dd274409568d895d9556e6fdb15 (patch)
treea260b2b9572cdf333788c7c33c83eba5f1194413 /docs
parentDelete unused ai_settings.yml (diff)
downloadAuto-GPT-84f66940669a9dd274409568d895d9556e6fdb15.tar.gz
Auto-GPT-84f66940669a9dd274409568d895d9556e6fdb15.tar.bz2
Auto-GPT-84f66940669a9dd274409568d895d9556e6fdb15.zip
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>
Diffstat (limited to 'docs')
-rw-r--r--docs/content/AutoGPT/Setups/nogit-setup.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/content/AutoGPT/Setups/nogit-setup.md b/docs/content/AutoGPT/Setups/nogit-setup.md
index e5464eee8..d1333fe5a 100644
--- a/docs/content/AutoGPT/Setups/nogit-setup.md
+++ b/docs/content/AutoGPT/Setups/nogit-setup.md
@@ -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