wan2gp-studio / scripts /update.bat
santhosh27k's picture
Upload folder using huggingface_hub
d328630 verified
@echo off
cd /d "%~dp0.."
setlocal enabledelayedexpansion
title WanGP Update & Upgrade
:MENU
cls
echo ======================================================
echo WAN2GP UPDATE / UPGRADE
echo ======================================================
python setup.py status
echo 1. Update (git pull + install requirements)
echo 2. Upgrade (Upgrade Torch, Triton, Sage Attention, etc.)
echo 3. Exit
echo ------------------------------------------------------
set /p choice="Select an option (1-3): "
if "%choice%"=="1" (
python setup.py update
pause
goto MENU
)
if "%choice%"=="2" (
python setup.py upgrade
pause
goto MENU
)
if "%choice%"=="3" exit
goto MENU