webui-forge-torch270-cu128 / 50_series_patch.bat
vjump21848's picture
Update 50_series_patch.bat
4effec0 verified
raw
history blame contribute delete
393 Bytes
@echo off
echo Start Nvidia 50 Series Patch
call environment.bat
python -m pip install uv
uv pip install --system "torch==2.7.0" "torchvision" "torchaudio" "xformers==0.0.30" --extra-index-url https://download.pytorch.org/whl/cu128
uv pip install --system "tqdm>=4.28.1"
setx PYTORCH_ENABLE_UNSAFE_LOAD 1
setx TORCH_FORCE_WEIGHTS_ONLY_LOAD 0
echo Nvidia 50 Series Patch Completed
PAUSE