diff --git a/main.py b/main.py index 240c1255f..0cd815d9e 100644 --- a/main.py +++ b/main.py @@ -25,7 +25,8 @@ setup_logger(log_level=args.verbose, use_stdout=args.log_stdout) def handle_comfyui_manager_unavailable(): - logging.warning(f"\n\nYou appear to be running comfyui-manager from source, this is not recommended. Please install comfyui-manager using the following command:\ncommand:\n\t{sys.executable} -m pip install --pre comfyui_manager\n") + if not args.windows_standalone_build: + logging.warning(f"\n\nYou appear to be running comfyui-manager from source, this is not recommended. Please install comfyui-manager using the following command:\ncommand:\n\t{sys.executable} -m pip install --pre comfyui_manager\n") args.enable_manager = False