소스 검색

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