From 3a573356a218a6af6be013685c926304cf3ba479 Mon Sep 17 00:00:00 2001 From: EasterRobert Date: Tue, 3 Feb 2026 17:49:14 +0100 Subject: [PATCH] docs: add virtual environment setup instructions Add a brief guide on how to create and activate a Python virtual environment for better dependency management. --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 2ef80bb5..ed89074b 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,10 @@ Install requirements.txt in a virtual environment of your choice and execute mai pip install -r requirements.txt python main.py ``` +### Setup Recommendation + +It is recommended to use a virtual environment to keep dependencies isolated: + +```bash +python3 -m venv venv +source venv/bin/activate # On Windows: venv\Scripts\activate