ZHO-ZHO-ZHO / ComfyUI-APISR

Unofficial implementation of APISR for ComfyUI
GNU General Public License v3.0
338 stars 22 forks source link

Following node types were not found #4

Open parecoa opened 6 months ago

parecoa commented 6 months ago

Hi there,

I have an issue: "When loading the graph, the following node types were not found: APISR_Zho APISR_ModelLoader_Zho Nodes that have failed to load will show as red on the graph."

Tried to update nodes in the manager and reinstall APISR, didn't help, do you have any ideas on how to fix it?

parecoa commented 6 months ago

apisr 1 apisr 2

troini commented 6 months ago

Hi!

I just installed the link: https://github.com/Kiteretsu77/APISR.git in ComfyUI Manager -> Install via GIT URL and clicked "RESTART" waited for reboot and it worked

But in general I think it's about pytorch or python

parecoa commented 6 months ago

Hi!

I just installed the link: https://github.com/Kiteretsu77/APISR.git in ComfyUI Manager -> Install via GIT URL and clicked "RESTART" waited for reboot and it worked

But in general I think it's about pytorch or python

Failed to install 'https://github.com/Kiteretsu77/APISR.git' See terminal log.

inspiredscout commented 6 months ago

same problem

troini commented 6 months ago

You can try installing ASIPR in the custom_nodes folder via git clone, the installation instructions are here - https://github.com/Kiteretsu77/APISR.git

And then update via ComfyUI Manager -> Update All

Also check if there are any errors in 'Install missing nodes'.

For the video, you will also need to install via Install custom nodes - VHS something there, you will find it in the search

Kurumifans commented 5 months ago

I encountered similar issue and resolved it by uninstalling the existing OpenCV and NumPy and then reinstalling them under Python 3.12 to ensure compatibility with ComfyUI. Here are the steps I followed:

Uninstall the current versions of OpenCV and NumPy:

pip uninstall opencv-python pip uninstall numpy

Reinstall OpenCV and NumPy using the embedded Python executable provided by ComfyUI (specifically for Python 3.12 in this case):

...\ComfyUI_windows_portable_nightly_pytorch\python_embeded\python.exe -m pip install numpy ...\ComfyUI_windows_portable_nightly_pytorch\python_embeded\python.exe -m pip install opencv-python