PaddleMIX icon indicating copy to clipboard operation
PaddleMIX copied to clipboard

ComfyUI lack of NODE_CLASS_MAPPINGS

Open Aljnk opened this issue 9 months ago • 0 comments

Skip ...\ComfyUI\custom_nodes\ComfyUI_ppdiffusers module for custom nodes due to the lack of NODE_CLASS_MAPPINGS.

I add into init.py this code -

...
except ImportError:
    print("Paddle is not installed. Please install it to use this node.")
    NODE_CLASS_MAPPINGS = {}
    NODE_DISPLAY_NAME_MAPPINGS = {}
    __all__ = []
else:
...

this code works.

Aljnk avatar Mar 25 '25 08:03 Aljnk