Browse Source

add `venv` instructions to `privategpt` example

Jeffrey Morgan 1 year ago
parent
commit
e5914eb320
1 changed files with 7 additions and 0 deletions
  1. 7 0
      examples/privategpt/README.md

+ 7 - 0
examples/privategpt/README.md

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