sipherxyz / comfyui-art-venture

157 stars 38 forks source link

(IMPORT FAILED) comfyui-art-venture #12

Open metzo007 opened 10 months ago

metzo007 commented 10 months ago

Hi,

I got this error message (IMPORT FAILED) comfyui-art-venture Nodes: ImagesConcat, LoadImageFromUrl, AV_UploadImage Conflicted Nodes: ColorCorrect [ComfyUI-post-processing-nodes], ColorBlend [stability-ComfyUI-nodes], SDXLPromptStyler [ComfyUI-Eagle-PNGInfo], SDXLPromptStyler [sdxl_prompt_styler]

I did a new comfy install, update all, try tix and try update but still have the same error.

adamprall commented 10 months ago

Updated everything, tried installing omegaconf and segment_anything, have git pull'd almost everywhere, no dice here either.

rockiecxh commented 9 months ago

same issue here, any solution?

ammarshow commented 8 months ago

same issue here !!!!!!!!!!!!!!!!!

TYgit23 commented 8 months ago

I have the same issue

GhostBat101 commented 8 months ago

anyone was able to find a solution to it? or find a replacement for the Scale Down to Size node?

Tekuzo commented 8 months ago

What does your console output look like? What is causing the error, hopefully we are all having the same error.

when I try to run ComfyUI and import the Node my output looks like

https://github.com/sipherxyz/comfyui-art-venture/issues/12 File "/Users/User/ComfyUI/custom_nodes/comfyui-art-venture/modules/interrogate/init.py", line 1, in from .blip_node import BlipLoader, BlipCaption File "/Users/User/ComfyUI/custom_nodes/comfyui-art-venture/modules/interrogate/blip_node.py", line 10, in from ..model_utils import download_model File "/Users/User/ComfyUI/custom_nodes/comfyui-art-venture/modules/model_utils.py", line 40, in file_name: str | None = None, TypeError: unsupported operand type(s) for |: 'type' and 'NoneType' Cannot import /Users/User/ComfyUI/custom_nodes/comfyui-art-venture module for custom nodes: unsupported operand type(s) for |: 'type' and 'NoneType'

littleyeson commented 8 months ago

I had fixed it. update download requirements.txt from https://github.com/sipherxyz/comfyui-art-venture to your comfyui-art-venture and blow this directory use terminal run pip install -r requirements to update the omegaconf. it is done

Tekuzo commented 8 months ago

I have omegaconf installed and I am still getting the error from my post.

yovsac commented 2 weeks ago

Did you find a solution? having similar problem

Tekuzo commented 2 weeks ago

I resolved this previously by putting boto3>=1.34.101 into the requirements.txt file. I see that change has been merged into the main branch.

yovsac commented 2 weeks ago

Screenshot 2024-10-29 122903 thank you, but I already have that in the requirements.txt by default. any other thoughts? I have this in my log

guifeliper commented 2 weeks ago

Screenshot 2024-10-29 122903 thank you, but I already have that in the requirements.txt by default. any other thoughts? I have this in my log

What folder should I add this repo? Custom-node?

yovsac commented 2 weeks ago

Yes custom nodes.

guifeliper commented 2 weeks ago

My error was a little bit different than the other errors. Watching the logs I found the following.

AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'?

To solve this I have installed numpy~=1.26.4, which solved my error. For this error, you can see more here

yovsac commented 2 weeks ago

How did you install numpy? a bit new at this

slawekpasko commented 1 week ago

Hi I had same problem.

In my case to resolve issue I install the necessary OpenGL library missing from my docker on Unraid 6.12.13/

sudo apt update sudo apt install libgl1

another missing library, libgthread-2.0.so.0, which is part of the glib2.0 package. This library is required by opencv-python and other graphical libraries.

To resolve this, install glib2.0.

sudo apt update sudo apt install libglib2.0-0

after all that I had no issue.