Install ComfyUI and Build Your First Stable Diffusion Workflow ComfyUI v0.33.1, released August 2026, can be installed locally to run Stable Diffusion 1.5 workflows, according to a tutorial by Mariana Souza on Sourcefeed. The guide walks through setting up ComfyUI, downloading the fp16 SD 1.5 checkpoint, building a text-to-image graph, adding a LoRA for style control, and integrating ESRGAN upscaling, requiring an NVIDIA GPU with 6 GB+ VRAM and about 8 GB free disk space. Install ComfyUI and Build Your First Stable Diffusion Workflow Get ComfyUI running locally, then wire a txt2img graph with a LoRA and ESRGAN upscaling. Mariana Souza https://sourcefeed.dev/u/mariana souza What you'll build A local ComfyUI https://www.comfy.org/ install running Stable Diffusion 1.5, plus a node-based text-to-image workflow you'll extend with a LoRA for style control and an ESRGAN upscaler — all copy-pasteable from a clean machine. Prerequisites Verified against ComfyUI v0.33.1 August 2026 with PyTorch CUDA 13.0 wheels. Python https://www.python.org/ 3.12 or 3.13 3.13 is the best-supported; 3.14 works but some custom nodes break and Git https://git-scm.com/ - An NVIDIA GPU with 6 GB+ VRAM for comfortable SD 1.5 use. AMD on Linux works via ROCm swap the torch install for --index-url https://download.pytorch.org/whl/rocm7.2 ; Apple silicon works via PyTorch nightly. No GPU at all? Add --cpu to the launch command — slow but functional. - ~8 GB free disk for the code and models Commands below are for Linux/macOS; on Windows use venv\Scripts\activate and the same pip commands or grab the portable build from comfy.org and skip section 1 . 1. Install ComfyUI Clone the repo, create a virtual environment ComfyUI's pinned deps will conflict with a system Python , and install PyTorch before the rest of the requirements: git clone https://github.com/comfyanonymous/ComfyUI.git cd ComfyUI python3 -m venv venv source venv/bin/activate pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu130 pip install -r requirements.txt 2. Download a checkpoint Checkpoints go in models/checkpoints . Grab the fp16 SD 1.5 base model from Comfy-Org's Hugging Face https://huggingface.co/Comfy-Org/stable-diffusion-v1-5-archive archive ~2 GB : curl -L -o models/checkpoints/v1-5-pruned-emaonly-fp16.safetensors \ "https://huggingface.co/Comfy-Org/stable-diffusion-v1-5-archive/resolve/main/v1-5-pruned-emaonly-fp16.safetensors" 3. Run the default txt2img workflow python main.py Open http://127.0.0.1:8188 . Load the default workflow via Workflow → Browse Templates → Image Generation or it's already on the canvas on first launch . The graph reads left to right: php flowchart LR LC Load Checkpoint -- CT1 CLIP Text Encode