You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"[bold yellow]Feel free to follow this thread to manually install:\nhttps://github.com/comfyanonymous/ComfyUI/discussions/476[/bold yellow]"
235
261
)
236
262
263
+
ifgpuisNoneandnotcpu:
264
+
print(
265
+
"[bold red]No GPU option selected or `--cpu` enabled, use --\[gpu option] flag (e.g. --nvidia) to pick GPU. use `--cpu` to install for CPU. Exiting...[/bold red]"
266
+
)
267
+
raisetyper.Exit(code=1)
268
+
237
269
install_inner.execute(
238
270
url,
239
271
manager_url,
@@ -242,7 +274,7 @@ def install(
242
274
skip_manager,
243
275
commit=commit,
244
276
gpu=gpu,
245
-
platform=platform,
277
+
plat=platform,
246
278
skip_torch_or_directml=skip_torch_or_directml,
247
279
skip_requirement=skip_requirement,
248
280
)
@@ -266,7 +298,6 @@ def update(
266
298
)
267
299
raisetyper.Exit(code=1)
268
300
269
-
_env_checker=EnvChecker()
270
301
comfy_path=workspace_manager.workspace_path
271
302
272
303
if"all"==target:
@@ -482,7 +513,9 @@ def which():
482
513
defenv():
483
514
check_for_updates()
484
515
_env_checker=EnvChecker()
485
-
_env_checker.print()
516
+
table=_env_checker.fill_print_table()
517
+
workspace_manager.fill_print_table(table)
518
+
console.print(table)
486
519
487
520
488
521
@app.command(hidden=True)
@@ -510,6 +543,7 @@ def feedback():
510
543
general_satisfaction_score=ui.prompt_select(
511
544
question="On a scale of 1 to 5, how satisfied are you with the Comfy CLI tool? (1 being very dissatisfied and 5 being very satisfied)",
question="On a scale of 1 to 5, how satisfied are you with the usability and user experience of the Comfy CLI tool? (1 being very dissatisfied and 5 being very satisfied)",
0 commit comments