From e588990959bcf60cdd46fbd922d95332d8d44d95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20M=C3=A5rdestam?= Date: Mon, 15 Sep 2025 11:40:37 +0200 Subject: [PATCH 1/2] Update development env docs for Windows --- README.md | 1 + docs/contributing/development-environment.md | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index faf5b98..3747ff7 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ **Want to contribute?** - Clone this repo +- install requirements: `pip install -r requirements.txt` - Run the server: - `mkdocs serve` - Specify a port: `mkdocs serve -a localhost:8001` diff --git a/docs/contributing/development-environment.md b/docs/contributing/development-environment.md index b458bb3..ac2d22e 100644 --- a/docs/contributing/development-environment.md +++ b/docs/contributing/development-environment.md @@ -59,9 +59,14 @@ This will create a Python virtual environment and install various other requirem To use the virtual environment, you need to activate it. This needs to be done for each new terminal session and is done by running: +Linux/macOS: ```bash source venv/bin/activate ``` +Windows (PowerShell): +```powershell +venv\Scripts\Activate +``` ## Run `esphome` From 48b9b1bd36a91025fb3644bcb70785af8777a0de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20M=C3=A5rdestam?= Date: Mon, 15 Sep 2025 12:56:16 +0200 Subject: [PATCH 2/2] Capitalize new install step from Copilot suggestion Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3747ff7..6fdb362 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ **Want to contribute?** - Clone this repo -- install requirements: `pip install -r requirements.txt` +- Install requirements: `pip install -r requirements.txt` - Run the server: - `mkdocs serve` - Specify a port: `mkdocs serve -a localhost:8001`