From 43590b8c434fc99bbed7b1a2a31ea5bf820d327c Mon Sep 17 00:00:00 2001 From: bhavyakeerthi3 Date: Fri, 6 Mar 2026 01:27:24 +0530 Subject: [PATCH] docs: add Windows PYTHONPATH instructions to README --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f38a4d3..bbe7037 100644 --- a/README.md +++ b/README.md @@ -30,11 +30,19 @@ Follow these steps to run the barebones Chainlit application. ```bash poetry install ``` -4. Verify your `PYTHONPATH` environment variable includes `./src`: +4. Verify your `PYTHONPATH` environment variable includes `./src`. + + Linux / macOS: ```bash echo $PYTHONPATH # ./src ``` + + Windows (PowerShell): + ```powershell + echo $env:PYTHONPATH + # ./src + ``` 5. List embeddings available for download: ```bash ./bin/embeddings_manager ls-remote @@ -82,7 +90,7 @@ Follow these steps to run the complete application in Docker. ```bash docker build -t reactome-chatbot . ``` -6. Start the Chainlit application and PostgrSQL database in Docker containers: +6. Start the Chainlit application and PostgreSQL database in Docker containers: ```bash docker-compose up