From f6bb513eed3ef28ccc572fd2b5e25526d00c8d84 Mon Sep 17 00:00:00 2001 From: MegaIng Date: Tue, 8 Jul 2025 13:41:17 +0200 Subject: [PATCH] Update windows install instructions for windows (#14293) Use the `py` launcher and don't use the `pip` script for upgrading pip itself --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1df9c3380..e18d5c4ad 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -77,9 +77,9 @@ Note that some tests require extra setup steps to install the required dependenc Run the following commands from a Windows terminal to install all requirements: ```powershell - > python -m venv .venv + > py -m venv .venv > .venv\Scripts\activate - (.venv) > pip install -U pip + (.venv) > python -m pip install -U pip (.venv) > pip install -r requirements-tests.txt ```