Files

18 lines
302 B
Batchfile

@echo off
cd /d "%~dp0"
where pyw >nul 2>nul
if %errorlevel%==0 (
start "" pyw -3 "src\flash_gui.py"
exit /b
)
where pythonw >nul 2>nul
if %errorlevel%==0 (
start "" pythonw "src\flash_gui.py"
exit /b
)
echo Python GUI launcher not found. Run manually: python src\flash_gui.py
pause