Open ohenepee opened 2 months ago
Oh, that's not an install option, it's a launch option.
comfy launch -- --cpu
Oh wow, comfy launch --help
doesn't show this... its rather present in comfy install --help
And actually prints "Installing for CPU" or something similar.
Thanks btw, wouldn't have figured it out.
Oh wow,
comfy launch --help
doesn't show this... its rather present incomfy install --help
And actually prints "Installing for CPU" or something similar.
Thanks btw, wouldn't have figured it out.
Actually -- <extra args ...>
is that.
--cpu
is arguments of ComfyUI core itself not a part of comfy-cli.
--
is used to set ComfyUI's own options.
For example, you can use it like this: comfy launch -- --listen 0.0.0.0 --port 1111
Oh wow,
comfy launch --help
doesn't show this... its rather present incomfy install --help
And actually prints "Installing for CPU" or something similar. Thanks btw, wouldn't have figured it out.Actually
-- <extra args ...>
is that.--cpu
is arguments of ComfyUI core itself not a part of comfy-cli.
--
is used to set ComfyUI's own options. For example, you can use it like this:comfy launch -- --listen 0.0.0.0 --port 1111
Should we make a --help command on extra args...? @ltdrdata
Describe the bug Installing with the
--cpu
option still installs all NVIDIA requirements. All the gigabytes of NVIDIA GPU dependencies were downloaded, even though I have no NVIDIA card and I specifically added--cpu
. After successful installation, launching fails withRuntimeError: Found no NVIDIA driver on your system. Please check that you have an NVIDIA GPU and installed a driver from http://www.nvidia.com/Download/index.aspx
To Reproduce
Expected behavior NVIDIA requirements are not needed for CPU-only installations. And there should be a way to pass the
--cpu
option to thecomfy launch
command.