This commit is contained in:
Neo
2026-01-27 23:45:36 +08:00
parent 64a3159f9e
commit 7e67bc4218
5 changed files with 127 additions and 44 deletions

View File

@@ -0,0 +1,10 @@
@echo off
chcp 65001 >nul
cd /d "%~dp0"
python -m gui.main
if errorlevel 1 (
echo.
echo 启动失败!请检查是否已安装 Python 和依赖。
echo 安装依赖命令: pip install -r ..\requirements.txt
pause
)