From da59ac10198f3932d8397c9b718c4e02279d2f41 Mon Sep 17 00:00:00 2001 From: DukeSniper Date: Fri, 3 May 2024 15:17:37 +0200 Subject: [PATCH] make sure setuptools are available in the venv (#2437) --- setup.bat | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.bat b/setup.bat index 2b95e27..8853cf1 100644 --- a/setup.bat +++ b/setup.bat @@ -13,6 +13,9 @@ call .\venv\Scripts\deactivate.bat call .\venv\Scripts\activate.bat +REM first make sure we have setuptools available in the venv +python -m pip install --require-virtualenv --no-input -q -q setuptools + REM Check if the batch was started via double-click IF /i "%comspec% /c %~0 " equ "%cmdcmdline:"=%" ( REM echo This script was started by double clicking.