Update setup.md (#3690)

Co-authored-by: Richard Beales <rich@richbeales.net>
This commit is contained in:
John Cole
2023-05-19 13:39:12 -04:00
committed by GitHub
parent ccc03c1a8d
commit a6d4deaf20
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@@ -21,6 +21,7 @@ logs
*.log
*.mp3
mem.sqlite3
venvAutoGPT
# Byte-compiled / optimized / DLL files
__pycache__/

View File

@@ -211,6 +211,16 @@ docker run -it --env-file=.env -v $PWD:/app --rm auto-gpt --gpt3only --continuou
### Run without Docker
#### Create a Virtual Environment
Create a virtual environment to run in.
``` shell
python -m venv venvAutoGPT
source venvAutoGPT/bin/activate
pip3 install --upgrade pip
```
!!! warning
Due to security reasons, certain features (like Python execution) will by default be disabled when running without docker. So, even if you want to run the program outside a docker container, you currently still need docker to actually run scripts.