From e5914eb320d2c30bfc84a4da926ad8298e7078fd Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Fri, 11 Aug 2023 00:20:22 -0700 Subject: [PATCH] add `venv` instructions to `privategpt` example --- examples/privategpt/README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/examples/privategpt/README.md b/examples/privategpt/README.md index a0800f2e..6f313c00 100644 --- a/examples/privategpt/README.md +++ b/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