guoyu/fronted_uniapp/build/启动服务器.sh
2025-12-03 18:58:36 +08:00

21 lines
469 B
Bash
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.

#!/bin/bash
# VOSK 模型本地服务器启动脚本Linux/Mac
echo "========================================"
echo "VOSK 模型本地服务器启动脚本"
echo "========================================"
echo ""
# 检查 Python 是否安装
if ! command -v python3 &> /dev/null; then
echo "[错误] 未检测到 Python3请先安装 Python 3.x"
exit 1
fi
echo "[信息] 正在启动服务器..."
echo ""
# 启动 Python 服务器
python3 server.py