TRANSMISSION · BEGINNER · DECRYPTING
beginner FREE

ComfyUI in the Cloud: No GPU Required

admin · Apr 7, 2026 · 1 views · 3 min read

Why ComfyUI in the Cloud?

If you read the A1111 cloud guide, you already know the basics — rent a GPU online, run the UI in your browser. This guide covers the same thing for ComfyUI.

Why pick ComfyUI over A1111 in the cloud? ComfyUI uses less VRAM, which means you can rent cheaper GPUs or generate larger images on the same hardware. On cloud pricing, that adds up.


Option 1: RunPod (Recommended)

RunPod has pre-built ComfyUI templates. It's the easiest cloud option.

  1. Create a RunPod account
  2. Go to Templates and search for "ComfyUI"
  3. Pick a GPU — RTX 3090 ($0.40/hr) or RTX 4090 ($0.75/hr)
  4. Deploy the pod
  5. Click Connect → open the ComfyUI web UI

You're in. The default workflow is loaded. Pick a checkpoint, type a prompt, generate.

Tip: RunPod templates usually come with a checkpoint pre-installed. If not, use the terminal to download one:

cd /workspace/ComfyUI/models/checkpoints
wget https://civitai.com/api/download/models/XXXXX -O model.safetensors

Replace the URL with the actual download link from Civitai (right-click the download button → copy link).


Option 2: Google Colab

Search GitHub for "ComfyUI Colab notebook" — several maintained notebooks exist. The process:

  1. Open the notebook in Colab
  2. Set runtime to GPU
  3. Run all cells
  4. Click the Gradio/tunnel link when it appears

Same caveats as the A1111 cloud guide: free Colab has time limits and Google sometimes restricts SD usage.


Option 3: Paperspace

Paperspace works well for ComfyUI because of persistent storage — your workflows and models stay between sessions.

  1. Create a Notebook with a GPU
  2. Clone ComfyUI in the terminal:
    git clone https://github.com/comfyanonymous/ComfyUI.git
    cd ComfyUI
    pip install -r requirements.txt
    python main.py --listen 0.0.0.0
  3. Access via the provided URL

Option 4: ThinkDiffusion

ThinkDiffusion supports ComfyUI as well as A1111. Select ComfyUI when creating your session — it's pre-installed with everything configured.


Which One?

Situation Best Option
Fastest setup, pay per hour RunPod
Free, limited Google Colab
Persistent storage Paperspace
Zero setup ThinkDiffusion

Once You're In

The ComfyUI interface is the same regardless of where it's running. The default workflow has everything wired:

  1. Load Checkpoint — select your model
  2. CLIP Text Encode (positive) — type your prompt:
    a girl standing in a field of flowers, sunset, beautiful lighting
  3. Empty Latent Image — set size (512x768 for SD 1.5, 832x1216 for SDXL)
  4. Click Queue Prompt

Two settings to play with early: steps (20-30 in the KSampler node) and image size (in the Empty Latent Image node). Leave everything else at defaults.


What's Next?

Once you're generating:

Welcome to the rabbit hole.

×