Getting Started Tutorial
Quick start guide for ComfyUI.
Introduction
ComfyUI is a powerful node-based Stable Diffusion interface. This tutorial will help you get started quickly.
First Steps
1. Start ComfyUI
Run the following command:
bash
# Navigate to ComfyUI directory
cd ComfyUI
# Run on Windows
python main.py
# Run on Linux/Mac
python3 main.py2. Open Browser
Open your browser and visit:
http://127.0.0.1:8188Interface Overview
| Area | Function |
|---|---|
| Left Panel | Node library |
| Center | Workflow canvas |
| Right Panel | Properties |
| Bottom | Generation queue |
Basic Workflow
Load Checkpoint → CLIP Text Encode → KSampler → VAE Decode → Save ImageGenerate Your First Image
- Drag CheckpointLoader node
- Load a model (e.g., v1-5-pruned-emaonly.safetensors)
- Add CLIPTextEncode for positive prompt
- Add CLIPTextEncode for negative prompt
- Add KSampler
- Add VAEDecode
- Add SaveImage node
- Click "Queue Prompt" to generate
Next Steps
- First Image - Generate your first image
- Prompt Basics - Write better prompts
- How to Run - More startup options