Hey there, Friends! ๐ง
Having trouble getting Forge UI up and running for your Stable Diffusion setup? No worriesโIโve got your back! Below are all the links and commands you need to get it fixed and running smooth like butter. ๐โ๏ธ
๐ Supporter Perk (Paying Supporters Only)
Iโve made a one-click installer for RTX 5090 / CUDA 12.8 that does everything for you (clone โ venv with Python 3.10 โ Torch cu128 stableโnightly fallback โ first-run setup), plus auto-logging and a couple extra guardrails. Itโs available to my paying supporters here on Patreon. If you want the comfy โclick once and chillโ experience, thatโs the way. ๐
https://www.patreon.com/posts/forge-ui-fresh-137804391
You can find the Video here:
https://www.youtube.com/watch?v=PtGgjdw5koA
๐ 1) Download Python 3.10.x (64-bit)
Forge UI plays best with Python 3.10.11. Grab it from the official site:
https://www.python.org/downloads/release/python-31011/
During install: check โInstall launcher for all usersโ and โAdd python.exe to PATHโ.
๐ List all Python versions you have
py -0p
โ
Confirm Python 3.10 is available
py -3.10 -V
๐ 2) Get Git (if you havenโt already)
https://git-scm.com/
๐งช Check Git
git --version
๐ฆ 3) Clone the Forge UI Repository
(Choose a folder first, e.g. E:\AI)
git clone https://github.com/lllyasviel/stable-diffusion-webui-forge.git
cd stable-diffusion-webui-forge
๐งฐ 4) Create and Activate a fresh Python 3.10 venv
py -3.10 -m venv venv
venv\Scripts\activate
(optional) upgrade pip:
python -m pip install -U pip
โก 5) Install PyTorch for CUDA 12.8 (cu128)
install cuda 12.8
python -m pip install --upgrade torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
๐ Quick CUDA check (you want โCUDA avail: Trueโ)
python -c "import sys, torch; print('Torch', torch.version, 'CUDA', getattr(torch.version,'cuda',None), 'CUDA avail:', torch.cuda.is_available()); sys.exit(0 if torch.cuda.is_available() else 1)"
๐ 6) Pin Python & Torch behavior in webui-user.bat
Create a file named: webui-user.bat in the Forge folder with this content:
@echo off
set "PYTHON=%~dp0venv\Scripts\python.exe"
set "VENV_DIR=venv"
set "TORCH_COMMAND=pip install --upgrade torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
set "COMMANDLINE_ARGS="
call webui.bat
(That keeps Forge on Python 3.10 and CUDA 12.8 wheels.)
๐ 7) First Run (setup only), then Launch
Run setup (installs remaining deps and exits):
webui-user.bat
Open webui-user.bat and remove โ--exitโ, then run it again to launch the UI.
Default URL:
๐งฏ Troubleshooting
โข INCOMPATIBLE PYTHON VERSION (shows 3.13.x):
rmdir /s /q venv
py -3.10 -m venv venv
venv\Scripts\activate
โข Torch installed but CUDA not available (CUDA avail: False):
Make sure you used the cu128 index. If stable fails, use the nightly cu128 line above.
โข Windows CMD error โand was unexpected at this time.โ
Thatโs a batch parser quirk. Use the plain commands above as written (no fancy blocks), or grab my one-click installer if youโre a supporter.
๐ฅ Thatโs it! Youโre now set up and ready to roll with Forge UI on your local machine.
If this helped, drop a likeโor join as a supporter to get the one-click installer & extras. ๐ฌ๐ผ๏ธ
Stay creative and break things (in a good way)! ๐จโ๐ป๐ก
โ Chris
Commander Riker
2025-11-10 20:11:04 +0000 UTCLVNDSCAPE
2025-08-24 10:02:26 +0000 UTCChris Wenzl
2025-08-17 15:39:13 +0000 UTCBigBullAI Jim
2025-08-16 12:51:30 +0000 UTC