Files
Button/sshDeploy/run-gui.bat
T
2026-07-28 15:33:07 +03:00

22 lines
308 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@echo off
cd /d "%~dp0"
where python >nul 2>&1
if %ERRORLEVEL%==0 (
python gui_app.py
goto :done
)
where py >nul 2>&1
if %ERRORLEVEL%==0 (
py -3 gui_app.py
goto :done
)
echo [error] Python 3 не найден. Установите с https://www.python.org/downloads/
pause
exit /b 1
:done
pause