A ModuleNotFoundError at ComfyUI startup almost always means a custom node's Python dependency didn't install — the node folder is there, but a package it imports is missing.
Also seen as: "ModuleNotFoundError", "No module named", "ImportError", "cannot import"
Direct answer
A ModuleNotFoundError at ComfyUI startup almost always means a custom node's Python dependency didn't install — the node folder is there, but a package it imports is missing.
Not sure this workflow will run before you rent a GPU?
Paste your ComfyUI workflow JSON into the free checker — it flags missing nodes, model requirements, and the VRAM/GPU you actually need. No signup.
A custom node's requirements.txt never ran (headless installs skip it).
Reinstall the node's requirements: pip install -r custom_nodes/<node>/requirements.txt. For from-source packages, use --prefer-binary and a longer build timeout, or a prebuilt wheel.