yolain / ComfyUI-Easy-Use

In order to make it easier to use the ComfyUI, I have made some optimizations and integrations to some commonly used nodes.
GNU General Public License v3.0
1.1k stars 78 forks source link

IndexError: tuple index out of range #373

Open pepebc opened 2 months ago

pepebc commented 2 months ago

error

Traceback (most recent call last): File "/media/DATOS/ComfyUI/execution.py", line 317, in execute output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) File "/media/DATOS/ComfyUI/execution.py", line 192, in get_output_data return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) File "/media/DATOS/ComfyUI/execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "/media/DATOS/ComfyUI/execution.py", line 158, in process_inputs results.append(getattr(obj, func)(**inputs)) File "/media/DATOS/ComfyUI/custom_nodes/ComfyUI-Easy-Use/py/easyNodes.py", line 2565, in apply base_clip = get_local_filepath(model_url, os.path.join(folder_paths.models_dir, 'clip')) File "/media/DATOS/ComfyUI/custom_nodes/ComfyUI-Easy-Use/py/libs/utils.py", line 224, in get_local_filepath raise Exception(f'无法从 {url} 下载,错误信息:{str(err.args[0])}') IndexError: tuple index out of range

wusev1e commented 2 months ago

models/clip folder missing “model.fp16.safetensors”.This is how I solved it.

pepebc commented 2 months ago

models/clip folder missing “model.fp16.safetensors”.This is how I solved it.

Correct, I forgot to put the model. Thanks