You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
math_test/start.bat

23 lines
416 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

@echo off
REM 数学学习软件启动脚本 (Windows)
echo 正在启动数学学习软件...
REM 检查Python是否安装
python --version >nul 2>&1
if %errorlevel% == 0 (
cd app && python main.py
goto end
)
python3 --version >nul 2>&1
if %errorlevel% == 0 (
cd app && python3 main.py
goto end
)
echo 错误未找到Python解释器
echo 请确保已安装Python 3.6或更高版本
pause
:end