whisper-dictation/install.bat

18 lines
425 B
Batchfile

@echo off
cd /d "%~dp0"
echo Creating Windows venv (.venv-windows)...
py -3.13 -m venv .venv-windows
set "VENV=%~dp0.venv-windows"
echo Installing dependencies...
"%VENV%\Scripts\pip" install --upgrade pip
"%VENV%\Scripts\pip" install -r requirements.txt
echo Installing CUDA 12 DLLs (required for GPU acceleration)...
"%VENV%\Scripts\pip" install -r requirements-cuda.txt
echo.
echo Done. Run start.bat to launch.
pause