改 相对路径 完成客户端

This commit is contained in:
Neo
2026-01-27 22:14:01 +08:00
parent 04c064793a
commit 9f8976e75a
292 changed files with 307062 additions and 678 deletions

27
etl_billiards/run_gui.bat Normal file
View File

@@ -0,0 +1,27 @@
@echo off
chcp 65001 >nul
cd /d "%~dp0"
echo ====================================
echo 飞球 ETL 管理系统
echo ====================================
echo.
REM 检查 Python
python --version >nul 2>&1
if errorlevel 1 (
echo [错误] 未找到 Python请先安装 Python 3.10+
pause
exit /b 1
)
REM 启动 GUI
echo 正在启动 GUI...
python -m gui.main
if errorlevel 1 (
echo.
echo [错误] 启动失败,请检查依赖是否已安装
echo 运行: pip install -r requirements.txt
pause
)