-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ModuleNotFoundError: No module named 'utils.json_util'; 'utils' is not a package #105
Comments
Same for me, unfortunately, it seems to be a comfyUI itself issue. |
I have the same problem, is there any solution? |
Module Import Issue:
|
这是来自QQ邮箱的假期自动回复邮件。您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
Try rename the folder 'utils' in ComfyUI folder to another one, e.g. 'utilities'. 'utils' may conflicts with utils.py in the comfyui folder. Do remember do the ‘rename refactoring’, make sure references are renamed too. |
|
that probably works given I've stumbled on the same issue earlier with restricted naming being used for directories, I ended up just copying over what I needed from utils. |
Same issue here. |
a simple alternative way: add the only function |
I've added these lines of code in comfyui_to_python.py:

but now:
(env) (base) PS D:\pinokio\api\comfy.git\app\custom_nodes\ComfyUI-to-Python-Extension> python comfyui_to_python.py
current_dir:D:\pinokio\api\comfy.git\app\custom_nodes\ComfyUI-to-Python-Extension
Traceback (most recent call last):
File "D:\pinokio\api\comfy.git\app\custom_nodes\ComfyUI-to-Python-Extension\comfyui_to_python.py", line 649, in
main()
File "D:\pinokio\api\comfy.git\app\custom_nodes\ComfyUI-to-Python-Extension\comfyui_to_python.py", line 643, in main
run(**vars(pargs))
File "D:\pinokio\api\comfy.git\app\custom_nodes\ComfyUI-to-Python-Extension\comfyui_to_python.py", line 608, in run
ComfyUItoPython(
File "D:\pinokio\api\comfy.git\app\custom_nodes\ComfyUI-to-Python-Extension\comfyui_to_python.py", line 552, in init
self.execute()
File "D:\pinokio\api\comfy.git\app\custom_nodes\ComfyUI-to-Python-Extension\comfyui_to_python.py", line 562, in execute
import_custom_nodes()
File "D:\pinokio\api\comfy.git\app\custom_nodes\ComfyUI-to-Python-Extension\comfyui_to_python_utils.py", line 15, in import_custom_nodes
import server
File "D:\pinokio\api\comfy.git\app\server.py", line 34, in
from app.custom_node_manager import CustomNodeManager
File "D:\pinokio\api\comfy.git\app\app\custom_node_manager.py", line 18, in
from utils.json_util import merge_json_recursive
ModuleNotFoundError: No module named 'utils.json_util'; 'utils' is not a package
The text was updated successfully, but these errors were encountered: