diff --git a/comfy/model_management.py b/comfy/model_management.py index 86f840ada..d9e2e9a07 100644 --- a/comfy/model_management.py +++ b/comfy/model_management.py @@ -186,6 +186,8 @@ def is_wsl(): return True elif version.endswith("microsoft-standard-WSL2"): return True + if os.environ.get("WSL_DISTRO_NAME"): + return True return False def get_torch_device():