From 488f023bdf49d6b85a00e230501eb009f5ffdbd9 Mon Sep 17 00:00:00 2001 From: "Dr.Lt.Data" Date: Sun, 9 Feb 2025 07:50:31 +0900 Subject: [PATCH] fixed: `install.py` wasn't executed properly https://github.com/comfyanonymous/ComfyUI/issues/6734#issuecomment-2645819264 --- glob/manager_core.py | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/glob/manager_core.py b/glob/manager_core.py index 90cc1568..b7bfa1f7 100644 --- a/glob/manager_core.py +++ b/glob/manager_core.py @@ -42,7 +42,7 @@ import manager_downloader from node_package import InstalledNodePackage -version_code = [3, 17, 10] +version_code = [3, 17, 11] version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '') @@ -824,7 +824,7 @@ class UnifiedManager: if os.path.exists(install_script_path) and install_script_path not in self.processed_install: self.processed_install.add(install_script_path) print("Install: install script") - install_cmd = manager_util.make_pip_cmd(["install.py"]) + install_cmd = [sys.executable, "install.py"] return try_install_script(url, repo_path, install_cmd, instant_execution=instant_execution) return True diff --git a/pyproject.toml b/pyproject.toml index ebd029da..a6acdbd0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "comfyui-manager" description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI." -version = "3.17.10" +version = "3.17.11" license = { file = "LICENSE.txt" } dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]