line 353, in <module> main() File "/home/sylw/miniconda3/envs/cf/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", line 335, in main json_out['return_val'] = hook(**hook_input
Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up Reseting focus {{ message }} Stradichenko / ComfyUI Public forked from comfyanonymous/ComfyUI Notifications You must be signed in to change notification settings Fork 0 Star 0 ...
We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up Reseting focus {...
files.sort(key=lambda x: int(os.path.basename(x).split(".")[0])) return files except Exception as e: return [] def listdir_models(path): try: relative_paths = [] for root, dirs, files in os.walk(path): for file in files: relative_paths.append(os.path.relpath( ...
from concurrent.futures import ThreadPoolExecutor python = sys.executable # User extension files in custom_nodes extension_folder = os.path.dirname(os.path.realpath(__file__)) # ComfyUI folders web folder_web = os.path.join(os.path.dirname(os.path.realpath(__main__.__file__)),...
Exception in thread Thread-8 (): Traceback (most recent call last): File "E:\Stable diffusion\sd-webui-aki-v4.5\python\lib\site-packages\aiohttp\connector.py", line 1152, in _create_direct_connection hosts = await asyncio.shield(host_resolved) File "E:\Stable diffusion\sd-webui-aki-v...
except Exception as e: print(e) sorted_data = sorted(data, key=lambda x: x['date'], reverse=True) return sorted_data # workflow def read_workflow_json_files(folder_path ): json_files = [] for filename in os.listdir(folder_path): if filename.endswith('.json'): j...
Cancel Create saved search Sign in Sign up Reseting focus {{ message }} LAOGOU-666 / ComfyUI-Manager Public forked from ltdrdata/ComfyUI-Manager Notifications You must be signed in to change notification settings Fork 0 Star 0 ...
if 'file_logging' in default_conf and default_conf['file_logging'].lower() == 'false': enable_file_logging = False except Exception: pass check_file_logging() comfy_path = os.environ.get('COMFYUI_PATH') if comfy_path is None: ...
except Exception as e: logging.error(f"Failed to execute startup-script: {script_path} / {e}") return False if args.disable_all_custom_nodes: return node_paths = folder_paths.get_folder_paths("custom_nodes") for custom_node_path in node_paths: possible_modules = os.listdir...