11 lines
205 B
Batchfile
11 lines
205 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
cd /d "%~dp0"
|
|
python -m gui.main
|
|
if errorlevel 1 (
|
|
echo.
|
|
echo Failed to start! Check Python and dependencies.
|
|
echo Run: pip install -r ..\requirements.txt
|
|
pause
|
|
)
|