具体报错为
[Comfyd] [ERROR] An error occurred while retrieving information for the 'easy XYPlotAdvanced' node.
[Comfyd] Traceback (most recent call last):
File "/home/ubuntu/llmlab/drawing/SimpleSDXL/comfy/server.py", line 564, in get_object_info
out[x] = node_info(x)
File "/home/ubuntu/llmlab/drawing/SimpleSDXL/comfy/server.py", line 531, in node_info
info['input'] = obj_class.INPUT_TYPES()
File "/home/ubuntu/llmlab/drawing/SimpleSDXL/comfy/custom_nodes/ComfyUI-Easy-Use/py/easyNodes.py", line 7365, in INPUT_TYPES
"font": (["None"] + files_list,)
UnboundLocalError: local variable 'files_list' referenced before assignment
具体解决方案如下
cd /home/ubuntu/llmlab/drawing/SimpleSDXL/comfy/custom_nodes/ComfyUI-Easy-Use/py
vi easyNodes.py
修改第7350行
line 7350:
flies_list = [] #修改这行
change to :
files_list = [] #修改之后