18 lines
467 B
Batchfile
18 lines
467 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\python.exe" -m pip install --upgrade pip
|
|
"%VENV%\Scripts\python.exe" -m pip install -r requirements.txt
|
|
|
|
echo Installing CUDA 12 DLLs (required for GPU acceleration)...
|
|
"%VENV%\Scripts\python.exe" -m pip install -r requirements-cuda.txt
|
|
|
|
echo.
|
|
echo Done. Run start.bat to launch.
|
|
pause
|