Skip to content

Commit

Permalink
Update setup.md (Significant-Gravitas#3690)
Browse files Browse the repository at this point in the history
Co-authored-by: Richard Beales <[email protected]>
  • Loading branch information
johnisanerd and richbeales authored May 19, 2023
1 parent ccc03c1 commit a6d4dea
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ logs
*.log
*.mp3
mem.sqlite3
venvAutoGPT

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
10 changes: 10 additions & 0 deletions docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit a6d4dea

Please sign in to comment.