šŸš€ Gemma 4 Release: Google DeepMind launches vision/audio-capable models on Hugging Face...šŸ›”ļø ComfyUI Stability Phase: Feature freeze through April to prioritize core robustness...šŸŽ¬ OmniWeaving: Tencent Hunyuan team bridges gap in multimodal video synthesis...šŸ’Ž Civitai Airship: New 4K upscaling and frame interpolation for local gens...šŸ¤— Hugging Face: Day-one support for Gemma 4 across all major integrations...šŸš€ Gemma 4 Release: Google DeepMind launches vision/audio-capable models on Hugging Face...šŸ›”ļø ComfyUI Stability Phase: Feature freeze through April to prioritize core robustness...
šŸ“ˆ AMD Ryzen 9 9950X3D2: Teased with massive 192MB L3 Cache for April launch...šŸ”„ RTX 50-Series: New rumors surface regarding Blackwell-based high-end architecture...šŸ’» Intel Core Ultra Series 3: 18A process commercial PCs now shipping globally...šŸ† NVIDIA Dominance: Team Green maintains massive AIB market lead in Q1 2026...🧠 Samsung/SK Hynix: LPDDR6 and HBM4 specs finalized for next-gen AI accelerators...šŸ“ˆ AMD Ryzen 9 9950X3D2: Teased with massive 192MB L3 Cache for April launch...šŸ”„ RTX 50-Series: New rumors surface regarding Blackwell-based high-end architecture...
šŸš€ Gemma 4 Release: Google DeepMind launches vision/audio-capable models on Hugging Face...šŸ›”ļø ComfyUI Stability Phase: Feature freeze through April to prioritize core robustness...šŸŽ¬ OmniWeaving: Tencent Hunyuan team bridges gap in multimodal video synthesis...šŸ’Ž Civitai Airship: New 4K upscaling and frame interpolation for local gens...šŸ¤— Hugging Face: Day-one support for Gemma 4 across all major integrations...šŸš€ Gemma 4 Release: Google DeepMind launches vision/audio-capable models on Hugging Face...šŸ›”ļø ComfyUI Stability Phase: Feature freeze through April to prioritize core robustness...
šŸ“ˆ AMD Ryzen 9 9950X3D2: Teased with massive 192MB L3 Cache for April launch...šŸ”„ RTX 50-Series: New rumors surface regarding Blackwell-based high-end architecture...šŸ’» Intel Core Ultra Series 3: 18A process commercial PCs now shipping globally...šŸ† NVIDIA Dominance: Team Green maintains massive AIB market lead in Q1 2026...🧠 Samsung/SK Hynix: LPDDR6 and HBM4 specs finalized for next-gen AI accelerators...šŸ“ˆ AMD Ryzen 9 9950X3D2: Teased with massive 192MB L3 Cache for April launch...šŸ”„ RTX 50-Series: New rumors surface regarding Blackwell-based high-end architecture...

How to Install ComfyUI Correctly

Complete installation guide for ComfyUI on Windows, Mac, and Linux. Portable and Desktop methods with troubleshooting.

5 min read

Setup

Guide 1: How to Install ComfyUI Correctly

Platform support: Windows | Mac (M1/M2/M3) | Linux


#Overview

This guide provides step-by-step installation instructions for ComfyUI across all major platforms. Follow the instructions for your operating system exactly to avoid common setup errors.

Estimated time: 10-15 minutes


Hardware Partner

Running these workflows? ComputeAtlas.ai helps you find the right GPU

Optimization is only half the battle. Get precise VRAM benchmarks and hardware recommendations tailored for ComfyUI.

Check GPU Prices →

Method 1: Portable Version (Easiest)

Best for: Beginners, plug-and-play users, anyone who wants zero setup

Step 1: Download ComfyUI Portable

  1. →Go to ComfyUI GitHub Releases
  2. →Look for the latest release
  3. →Download: ComfyUI_windows_portable_nvidia_cu121.7z (or latest CUDA version)

Step 2: Extract the Archive

  1. →Right-click the .7z file
  2. →Extract to a simple path:
    comfyui-workflow.json
    C:/AI/ComfyUI

āŒ Avoid paths with:

  • →Spaces (C:\Program Files\ComfyUI)
  • →Special characters
  • →Very long folder names
  • →OneDrive/Cloud synced folders

Step 3: Run ComfyUI

  1. →Open the extracted folder
  2. →Double-click: run_nvidia_gpu.bat
  3. →Wait for the console window to finish loading
  4. →Your browser will open automatically to: http://127.0.0.1:8188

āœ… Success: You should see the ComfyUI interface with a default workflow


Method 2: Desktop Install (Advanced)

Best for: Developers, power users, those wanting Git integration

Prerequisites

Step 1: Clone the Repository

Open Command Prompt or PowerShell:

comfyui-workflow.json
cd C:\AI git clone https://github.com/comfyanonymous/ComfyUI cd ComfyUI

Step 2: Install Dependencies

comfyui-workflow.json
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121 pip install -r requirements.txt

Note: Replace cu121 with your CUDA version if different

Step 3: Run ComfyUI

comfyui-workflow.json
python main.py

Browser will open to http://127.0.0.1:8188


#šŸŽ Mac Installation (M1/M2/M3)

Step 1: Install Python

Download Python 3.10 or 3.11 from python.org

Verify installation:

comfyui-workflow.json
python3 --version

Step 2: Clone ComfyUI

Open Terminal:

comfyui-workflow.json
cd ~/Documents git clone https://github.com/comfyanonymous/ComfyUI cd ComfyUI

Step 3: Install Requirements

comfyui-workflow.json
pip3 install -r requirements.txt

Step 4: Run ComfyUI

comfyui-workflow.json
python3 main.py --force-fp16

For M1/M2/M3 optimization:

comfyui-workflow.json
python3 main.py --force-fp16 --highvram

Browser opens to http://127.0.0.1:8188


#🐧 Linux Installation

Step 1: Update System Packages

comfyui-workflow.json
sudo apt update && sudo apt upgrade -y sudo apt install python3 python3-pip git -y

Step 2: Clone ComfyUI

comfyui-workflow.json
cd ~ git clone https://github.com/comfyanonymous/ComfyUI cd ComfyUI

Step 3: Install CUDA (NVIDIA GPUs)

Check CUDA version:

comfyui-workflow.json
nvidia-smi

Install PyTorch with CUDA:

comfyui-workflow.json
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121

Step 4: Install Requirements

comfyui-workflow.json
pip3 install -r requirements.txt

Step 5: Run ComfyUI

comfyui-workflow.json
python3 main.py

#🚨 Common Installation Errors

Error: "CUDA not available"

Cause: PyTorch installed without CUDA support

Fix:

comfyui-workflow.json
pip uninstall torch torchvision torchaudio pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121

Error: "ModuleNotFoundError: No module named 'torch'"

Cause: PyTorch not installed

Fix:

comfyui-workflow.json
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121

Error: "Access Denied" when running .bat file

Cause: Windows security blocking execution

Fix:

  1. →Right-click run_nvidia_gpu.bat
  2. →Properties → Unblock → Apply
  3. →Run as Administrator

Error: Browser doesn't open automatically

Manual access: Open browser and go to: http://127.0.0.1:8188


Error: "Port 8188 already in use"

Cause: Another instance of ComfyUI is running

Fix:

comfyui-workflow.json
# Windows taskkill /F /IM python.exe # Mac/Linux killall python3

Or specify a different port:

comfyui-workflow.json
python main.py --port 8189

#āœ… Verify Installation

After installation, verify ComfyUI is working:

  1. →Load default workflow - Should load without errors
  2. →Check GPU detection:
    • →Look at console output
    • →Should show: Device: cuda (NVIDIA) or Device: mps (Mac)
  3. →Generate a test image:
    • →Use the default workflow
    • →Click "Queue Prompt"
    • →Image should generate successfully

#šŸ“ Folder Structure After Installation

comfyui-workflow.json
ComfyUI/ ā”œā”€ā”€ models/ │ ā”œā”€ā”€ checkpoints/ ← Put SD models here │ ā”œā”€ā”€ loras/ ← Put LoRAs here │ ā”œā”€ā”€ vae/ ← Put VAEs here │ ā”œā”€ā”€ controlnet/ ← Put ControlNet models here │ └── embeddings/ ← Put embeddings here ā”œā”€ā”€ custom_nodes/ ← Install custom nodes here ā”œā”€ā”€ input/ ← Input images for workflows ā”œā”€ā”€ output/ ← Generated images save here └── ComfyUI/ ← Core application files

#šŸ”„ Updating ComfyUI

Portable Version

  1. →Download the latest portable release
  2. →Extract to a new folder
  3. →Copy your models/ folder to the new installation
  4. →Copy your custom_nodes/ folder

Desktop Install

comfyui-workflow.json
cd ComfyUI git pull pip install -r requirements.txt

#šŸŽÆ Next Steps

  1. →Download models → See Model Folders Guide
  2. →Install custom nodes → See Custom Nodes Guide
  3. →Optimize performance → See Performance Guide

#šŸ†˜ Still Having Issues?

→ See Fix Missing Dependencies
→ See GPU and CUDA Errors
→ Use Troubleshooting Assistant


Need to decide between Portable and Desktop? See: Installation Decision Guide

Hardware Partner

Running these workflows? ComputeAtlas.ai helps you find the right GPU

Optimization is only half the battle. Get precise VRAM benchmarks and hardware recommendations tailored for ComfyUI.

Check GPU Prices →