Umgebungsvariable heisst jetzt SPS_SKEL

This commit is contained in:
2026-07-20 16:45:19 +02:00
parent 06de3aba70
commit c7c50190cb
8 changed files with 71 additions and 71 deletions
+4 -4
View File
@@ -5,14 +5,14 @@ REM ================================================================
call "%~dp0setenv.bat"
if not exist "%PROJECT%\.venv" (
if not exist "%SPS_SKEL%\.venv" (
echo Initialisiere Python virtual environment...
py -m venv "%PROJECT%\.venv" --upgrade-deps
py -m venv "%SPS_SKEL%\.venv" --upgrade-deps
echo Erfolgreich.
call "%PROJECT%\.venv\Scripts\activate.bat"
call "%SPS_SKEL%\.venv\Scripts\activate.bat"
echo Installiere erforderliche Python Packages...
pip install -r "%PROJECT%\requirements.txt" -q
pip install -r "%SPS_SKEL%\requirements.txt" -q
echo Erfolgreich.
deactivate
) else (