wrz-yolo/start_web_app.bat
2025-06-27 17:13:48 +08:00

26 lines
543 B
Batchfile
Raw Permalink 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
echo ===================================
echo 道路损伤视频检测系统 - Web界面
echo ===================================
echo.
REM 检查Python环境
python --version >nul 2>&1
if %ERRORLEVEL% NEQ 0 (
echo [错误] 未检测到Python环境请安装Python 3.8或更高版本。
goto :end
)
REM 检查依赖包
echo [信息] 检查依赖包...
pip install -r requirements.txt
echo.
echo [信息] 启动Web应用...
echo [信息] 请在浏览器中访问: http://localhost:5000
echo.
python app.py
:end
pause