瀏覽代碼

add `venv` instructions to `privategpt` example

Jeffrey Morgan 1 年之前
父節點
當前提交
e5914eb320
共有 1 個文件被更改,包括 7 次插入0 次删除
  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