add `venv` instructions to `privategpt` example

This commit is contained in:
Jeffrey Morgan 2023-08-11 00:20:22 -07:00
parent ab78f48ff8
commit e5914eb320
1 changed files with 7 additions and 0 deletions

View File

@ -4,6 +4,13 @@
### Setup
Optionally set up a virtual environment:
```
python3 -m venv .venv
source .venv/bin/activate
```
Install the Python dependencies:
```shell