From 63e2595ccec549e2fdf1d6554c9c906f745713d6 Mon Sep 17 00:00:00 2001 From: Elian Thorne <289383015+ElianThorne@users.noreply.github.com> Date: Sun, 31 May 2026 20:13:45 +0530 Subject: [PATCH] Add Windows activation instructions for virtual environment --- README.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 18a126a6..ff7d2046 100644 --- a/README.md +++ b/README.md @@ -4,14 +4,21 @@ This site is built using [Material for MkDocs](https://squidfunk.github.io/mkdoc ### Development environment setup -1. Install python 3 -2. Create a virtual-env: +**1. Install python 3** + +**2. Create and activate a virtual-env:** + - *Linux/macOS:* ```bash python -m venv virtual-env source virtual-env/bin/activate ``` -3. `pip install -r requirements.txt` -4. `mkdocs serve` + - *Windows:* +```bash +python -m venv virtual-env +virtual-env\Scripts\activate +``` +**3. `pip install -r requirements.txt`** +**4. `mkdocs serve`** ### To add documentation for a new module