Update windows install instructions for windows (#14293)

Use the `py` launcher and don't use the `pip` script for upgrading pip itself
This commit is contained in:
MegaIng
2025-07-08 13:41:17 +02:00
committed by GitHub
parent 40c26877c7
commit f6bb513eed
+2 -2
View File
@@ -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
```