Leaving the details aside, let's generate an image for now.
Startup
Portable Version
- Double-click
run_nvidia_gpu.batin the installed folder.
Desktop Version
- Start from the desktop shortcut or Start menu.
Manual Installation
- Execute the following commands:
cd path\to\comfyui venv\Scripts\activate python main.py
After a while, the ComfyUI screen will open in your browser.
- If the screen does not open, try entering
http://127.0.0.1:8188in the browser's address bar.
Select Workflow from Template

- Immediately after the very first startup, the template screen is probably open. (If not, select
Templateson the left sidebar.) - First, select
Getting Started->Image Generation. - An error
Missing Modelswill be displayed.- This indicates that the model for running the workflow is missing, but ignore it for now and press
✕to close it.
- This indicates that the model for running the workflow is missing, but ignore it for now and press
Downloading the Model
This workflow is for running a model called Stable Diffusion 1.5. Compared to current latest models, its performance is modest... or rather, honestly, it's not very useful, but the fundamental mechanism hasn't changed.
Let's learn basic image generation with this model, which can be said to be the ancestor of image generation AI.
-
- Download Model
- v1-5-pruned-emaonly-fp16.safetensors (Direct Link)
- Clicking the link above will start the download.
- Save this in the following folder:
📂ComfyUI/ └── 📂models/ └── 📂checkpoints/ └── v1-5-pruned-emaonly-fp16.safetensors -
- Refresh
- Just placing the model is not enough for ComfyUI to recognize it.
- Press the
rkey on your keyboard, or pressComfyUI Icon->Edit->Refresh Node Definitionsto recognize it.
Let's Generate
- Press the
▷ Runbutton at the top of the screen to start generation. - If an image is displayed in the
Save Imagenode, it is successful. - The
Save Imagenode is, as the name suggests, a node that saves the input image. The generated image is saved in the following folder:
📂ComfyUI/
└── 📂output/
├── SD1.5_00001_.png
...
Try changing the prompt (text in the CLIP Text Encode node) or changing the seed number to play around.
Common Troubles
Model not found (Load Checkpoint is red)
- Symptom
- The
Load Checkpointnode is surrounded by red and an error is displayed. Value not in list: ckpt_name: 'v1-5-pruned.ckpt' not in []
- The
- Cause
- The specified model file is not in the
models/checkpoints/folder. - The file name has been changed.
- The specified model file is not in the
- Solution
- Check if the folder location is correct (
models/checkpoints). - There is no problem if the file name changes, but in that case, please re-select the model.
- Check if the folder location is correct (