Files
feiqiu-ETL/etl_billiards/run_gui.bat
2026-01-27 22:14:01 +08:00

28 lines
529 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
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
)