AICoverGenEnhanced / start_webui.bat
Adam3's picture
Upload 11 files
b22f3f4 verified
raw
history blame contribute delete
266 Bytes
@echo off
cd /d "%~dp0"
REM Activate virtual environment
call AICoverGen\Scripts\activate.bat
REM Update yt-dlp to fix YouTube download issues
echo Updating yt-dlp...
pip install --upgrade yt-dlp --quiet
REM Run webui with CUDA enabled
python src\webui.py
pause