From 39df2743fe769b73d7592eba2b206a4e5cf413d1 Mon Sep 17 00:00:00 2001 From: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> Date: Thu, 6 Mar 2025 15:04:33 +0300 Subject: [PATCH] get_installed_packages: return python packages names in lowercase (#1614) --- glob/manager_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glob/manager_util.py b/glob/manager_util.py index 3b4ef6c7..c561463b 100644 --- a/glob/manager_util.py +++ b/glob/manager_util.py @@ -246,7 +246,7 @@ def get_installed_packages(renew=False): if y[0] == 'Package' or y[0].startswith('-'): continue - pip_map[y[0]] = y[1] + pip_map[y[0].lower()] = y[1] except subprocess.CalledProcessError: logging.error("[ComfyUI-Manager] Failed to retrieve the information of installed pip packages.") return set()