guoyu/Test/python/安装FasterWhisper.bat
2025-12-11 23:28:07 +08:00

34 lines
713 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
title 安装 Faster-Whisper
echo ========================================
echo 安装 Faster-Whisper更快更稳定
echo ========================================
echo.
cd /d "%~dp0"
echo 正在安装 Faster-Whisper...
echo (使用清华镜像,速度快)
echo.
pip install faster-whisper flask flask-cors -i https://pypi.tuna.tsinghua.edu.cn/simple
if %errorlevel% equ 0 (
echo.
echo ========================================
echo ✅ 安装成功!
echo ========================================
echo.
echo 现在运行:
echo python whisper_server_faster.py
echo.
) else (
echo.
echo ❌ 安装失败!
echo.
)
pause