This commit is contained in:
joel
2026-04-15 19:11:03 +02:00
parent 6dece1410c
commit 0bd37cdd6f
10 changed files with 173 additions and 77 deletions
+9 -4
View File
@@ -1,6 +1,11 @@
@echo off
REM Stelle sicher, dass Python 3.11 in deinem PATH ist oder gib den vollständigen Pfad an.
python3.11 main.py
cd /d "%~dp0"
REM Optional: Das Fenster bleibt offen, damit du eventuelle Fehlermeldungen sehen kannst.
pause
IF NOT EXIST ".venv" (
echo Die virtuelle Umgebung fehlt.
echo Bitte fuehre zuerst die Installation (install\install_windows.ps1) aus!
pause
exit /b
)
start "" /B ".venv\Scripts\pythonw.exe" main.py