kealiu / ComfyUI-Zero123-Porting

ComfyUI Node for Zero-1-to-3: Zero-shot One Image to 3D Object
Apache License 2.0
13 stars 4 forks source link

ModuleNotFoundError: No module named 'ldm.models.diffusion' #4

Open scottcali opened 1 week ago

scottcali commented 1 week ago

Traceback (most recent call last): File "ComfyUI.\nodes.py", line 1906, in load_custom_node module_spec.loader.exec_module(module) File "", line 883, in exec_module File "", line 241, in _call_with_frames_removed File "ComfyUI\custom_nodes\ComfyUI-Zero123-Porting__init__.py", line 6, in from zero123_nodes import Zero123, Zero123Preprocess File "ComfyUI\custom_nodes\ComfyUI-Zero123-Porting\zero123_nodes.py", line 6, in from zero123 import init_model, predict_cam File "ComfyUI\custom_nodes\ComfyUI-Zero123-Porting\zero123.py", line 8, in from ldm.models.diffusion.ddim import DDIMSampler ModuleNotFoundError: No module named 'ldm.models.diffusion'

Cannot import ComfyUI\custom_nodes\ComfyUI-Zero123-Porting module for custom nodes: No module named 'ldm.models.diffusion'

kealiu commented 1 week ago

whieh python version did you use? and can you print the python system environment of sys.path.

from https://github.com/kealiu/ComfyUI-Zero123-Porting/blob/802e6c0302abfea5c6a32abf5e3f3822d28cad46/__init__.py#L4, the code will make ComfyUI-Zero123-Porting load ldm.models.diffusion from current directory.

but seems this not work. so, some thing wrong with the python module search path configuration.