11 lines
232 B
Batchfile
11 lines
232 B
Batchfile
@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
|
|
)
|