voiceclone-tts/run_windows.bat
2026-03-28 22:04:45 +09:00

22 lines
508 B
Batchfile

@echo off
echo ============================================
echo Voice Clone TTS - Setup ^& Launch
echo ============================================
echo.
:: Check Python
python --version >nul 2>&1
if errorlevel 1 (
echo [ERROR] Python not found. Download it from https://www.python.org/downloads/
pause
exit /b 1
)
:: Install dependencies
echo Installing dependencies (first time only, ~5 min)...
pip install -r requirements.txt
echo.
echo Launching app...
python voice_clone_tts.py
pause