BestLLMfor Your hardware. Your LLM. Your call.
◆ The kits◆ Kits APIOpen data Find my LLM
Guide · 2026-09-20

AUTOMATIC1111 Stable Diffusion WebUI: Install Guide, Key Settings, and Whether to Still Use It

◆ Image AI — Your AI images and videos, 100% local — ComfyUI, Flux, Z-Image, Wan 2.2, no limits, no subscription · $24 · or all kits $49 →

AUTOMATIC1111 is the interface that put Stable Diffusion on millions of PCs. How to install it, the settings that matter, and an honest look at when Forge or ComfyUI is the better pick in 2026.

By Mohamed Meguedmi·Last updated 2026-09-20·9 min read·Tested on Windows, macOS, Linux

Key takeaways

  • AUTOMATIC1111 (often "A1111") is a free, open-source web interface for running Stable Diffusion image models on your own computer. Its full name is Stable Diffusion WebUI.
  • It is a tabbed, form-based interface: text-to-image, image-to-image, inpainting, upscaling, plus a huge library of community extensions.
  • It supports Stable Diffusion 1.5, 2.x and SDXL well. It does not support newer families such as Flux, and development has slowed sharply since mid-2024.
  • Installation needs Python 3.10 and Git, then one script. Launch flags such as --xformers and --medvram adapt it to your GPU.
  • For a new install in 2026, Forge gives you the same interface with better speed and newer models; ComfyUI gives you everything, at the price of a learning curve. A1111 remains the right tool when you are following tutorials or extensions written for it.

What AUTOMATIC1111 is

The Local Image AI Kit

AI images and videos on your own machine, no subscription and no credits: ComfyUI, Flux, Z-Image and Wan 2.2 with ready-to-load workflows, VRAM tiers, LoRA training and the legal frame.

  • Lifetime online access
  • PDF + files
  • 30-day refund

When Stable Diffusion's weights were released in August 2022, running them meant typing Python commands. Within weeks a developer using the handle AUTOMATIC1111 published a browser-based interface built on the Gradio library, under the AGPL-3.0 license. It grew into the most widely used image-generation front end of the following two years. The project lives at github.com/AUTOMATIC1111/stable-diffusion-webui.

Like every local tool, it runs on your machine and opens in your browser at http://127.0.0.1:7860. Prompts and images stay on your disk.

What you need

MinimumComfortable
GPUNVIDIA with 4 GB of VRAM (SD 1.5 only, with memory-saving flags)NVIDIA with 8 GB for SDXL; 12 GB+ for SDXL with LoRAs, ControlNet and upscaling
System RAM8 GB16 GB or more
Disk≈ 12 GB for the install plus one model50 GB+ on an SSD; model collections grow quickly
SoftwarePython 3.10.x and GitThe exact Python minor version matters: newer versions break dependencies
Other hardwareAMD cards work on Linux (ROCm) and, with more effort, on Windows; Apple Silicon works but is slow. NVIDIA is the supported path.

To check your card's memory, see what VRAM is and how to check it.

Installation

Windows (NVIDIA)

  1. Install Python 3.10.6 from python.org and tick "Add Python to PATH." Do not use 3.11 or later.
  2. Install Git for Windows.
  3. Open a terminal in a folder with a short path and no spaces, and run:
    git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
    cd stable-diffusion-webui
    webui-user.bat
  4. The first launch downloads PyTorch and dependencies, several gigabytes, and can take 10 to 30 minutes. When it prints a local URL, open it in your browser.

Linux

sudo apt install git python3.10-venv libgl1 libglib2.0-0
git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
cd stable-diffusion-webui
./webui.sh

On distributions that ship a newer Python, install 3.10 alongside it and point the script to it with python_cmd="python3.10" in webui-user.sh.

Where files go

FolderContents
models/Stable-diffusionCheckpoints: the main model files (.safetensors)
models/LoraLoRAs, which add a style or subject to a base model
models/VAEOptional VAE files; many SDXL checkpoints include their own
embeddingsTextual inversion embeddings
extensionsInstalled extensions (managed from the Extensions tab)
outputsYour images, sorted by mode and date

A fresh install has no model; older versions downloaded SD 1.5 automatically, but do not count on it. Download an SDXL checkpoint from Hugging Face, place it in models/Stable-diffusion, and press the refresh icon next to the checkpoint selector. Our Hugging Face guide explains how to find and vet model files. Use .safetensors only: the older .ckpt format can execute code when loaded.

Launch flags by VRAM

Options go in the COMMANDLINE_ARGS line of webui-user.bat (Windows) or webui-user.sh (Linux).

FlagEffectUse it when
--xformersMemory-efficient attention: faster, less VRAMAlmost always on NVIDIA cards
--medvramKeeps only part of the model on the GPU at a time; slower6–8 GB cards running SDXL
--medvram-sdxlSame, applied to SDXL models only8 GB cards that handle SD 1.5 fine
--lowvramAggressive offloading; much slower4 GB cards, as a last resort
--apiEnables the REST APIDriving the WebUI from scripts or other apps
--listenAccepts connections from other devices on your networkUsing it from a tablet or another PC; add authentication
--autolaunchOpens the browser automaticallyConvenience
set COMMANDLINE_ARGS=--xformers --medvram-sdxl --autolaunch

The settings that matter for a first image

SettingStarting valueWhat it does
Sampling methodDPM++ 2M Karras, or Euler aThe denoising algorithm; these two are reliable defaults
Sampling steps20–30More steps, more time, diminishing returns past 30
Width × height1024 × 1024 for SDXL, 512 × 512 for SD 1.5Stay near the model's native resolution or compositions fall apart
CFG scale5–7How strictly the image follows the prompt; too high looks burnt
Seed-1 (random)Fix it to reproduce an image while changing one thing
Hires. fixOff at firstGenerates small then upscales with a second pass; the classic way to get detail

Describe rather than command, in English, subject first: "portrait of an elderly fisherman, window light, 85mm, shallow depth of field." The negative prompt lists what to avoid. One feature worth knowing early: the PNG Info tab reads the prompt and every setting back from any image the WebUI generated.

A1111 vs Forge vs ComfyUI in 2026

AUTOMATIC1111ForgeComfyUI
InterfaceTabs and formsSame tabs and formsNode graph
Learning curveGentleGentleSteep
Speed and VRAM efficiencyBaselineNoticeably better, especially under 12 GBBest
Newer models (Flux and later)NoFlux supportedNearly everything, usually first
Video modelsNoNoYes
Extensions and tutorialsThe largest back catalogMost A1111 extensions workLarge, different ecosystem (custom nodes)
Development paceSlow: last major release line dates from mid-2024Irregular but more recentVery active

The verdict is straightforward. Choose A1111 if you are following a course, a tutorial or an extension written for it, or if an existing install does what you need with SD 1.5 and SDXL. Choose Forge for a new install if you like this style of interface: it is a fork by the author of ControlNet and Fooocus with better memory management, and your habits transfer unchanged. Choose ComfyUI if you want current models, video, or reproducible pipelines; start with our ComfyUI beginner's guide. For settings per GPU and ready-made workflows, see the Local Image AI Kit.

Common errors

Message or symptomCauseFix
CUDA out of memoryImage size or model exceeds VRAMAdd --medvram or --medvram-sdxl; lower the resolution; close other GPU apps
Torch is not able to use GPUDriver too old, or a non-NVIDIA GPUUpdate the NVIDIA driver; you do not need the CUDA Toolkit (see what is CUDA)
Install fails on dependenciesWrong Python versionUse Python 3.10.x and delete the venv folder before relaunching
Black or green imagesHalf-precision problems on some cards or VAEsAdd --no-half-vae
A recent RTX 50 card is not usedBundled PyTorch predates the architectureUpgrade PyTorch inside the venv to a build that supports your GPU, or use Forge or ComfyUI

Hardware data referenced across BestLLMfor is open through our public API (CC BY 4.0) and MCP server. The WebUI's own wiki documents every flag, and the Forge fork lives at github.com/lllyasviel/stable-diffusion-webui-forge.

Frequently asked questions

Is AUTOMATIC1111 free?

Yes. It is open-source software under the AGPL-3.0 license, and the Stable Diffusion models it runs are free to download. There is no subscription or credit system; you only need suitable hardware.

Is AUTOMATIC1111 still being updated?

Only slowly. The last major release line dates from mid-2024 and newer model families such as Flux are not supported. It still works well for Stable Diffusion 1.5 and SDXL, but most active development has moved to Forge and ComfyUI.

Which Python version does AUTOMATIC1111 need?

Python 3.10.x, with 3.10.6 being the version the project recommends. Newer Python versions cause dependency installation to fail.

How much VRAM does AUTOMATIC1111 need?

4 GB runs Stable Diffusion 1.5 with memory-saving flags, 8 GB runs SDXL, and 12 GB or more is comfortable for SDXL with LoRAs, ControlNet and high-resolution passes.

Should I use AUTOMATIC1111, Forge or ComfyUI?

Forge for a new install if you want the classic tabbed interface with better performance and Flux support. ComfyUI for the newest models, video and reproducible workflows. AUTOMATIC1111 when a tutorial or extension you rely on was written for it.

Can AUTOMATIC1111 run without an internet connection?

Yes, after installation. The internet is needed to download dependencies, models and extensions. Once those are in place, generation is fully offline.

Recommended hardware

A current option for local AI: GMKtec EVO-X2 64GB / 1TB (Ryzen AI Max+ 395). Match memory to your model and software. A mini PC is a complete PC alternative; Mac/MLX and CUDA instructions require compatible hardware.

Amazon Check GMKtec EVO-X2 64GB / 1TB (Ryzen AI Max+ 395) price →

As an Amazon Associate, BestLLMfor earns from qualifying purchases, at no extra cost to you. It does not influence our independent rankings.

Did this guide help?

Found an error or have feedback? Let us know — it helps everyone who reads this guide.