Files
assist/start_legacy.bat

23 lines
417 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
echo 启动TSP智能助手传统版本...
echo.
echo 检查Python环境...
python --version >nul 2>&1
if %errorlevel% neq 0 (
echo 错误: 未找到Python请先安装Python
echo 下载地址: https://www.python.org/downloads/
pause
exit /b 1
)
echo 启动Web服务器...
echo 访问地址: http://localhost:5000
echo.
echo 按 Ctrl+C 停止服务器
echo.
python src/web/app.py
pause