- Windows (NVIDIA)
- macOS (Apple silicon)
This desktop app is a packaged way to use ComfyUI and comes bundled with a few things:
- Stable version of ComfyUI from releases
- ComfyUI_frontend
- ComfyUI-Manager
- uv
On startup, it will install all the necessary python dependencies with uv and start the ComfyUI server. The app will automatically update with stable releases of ComfyUI, ComfyUI-Manager, and the uv executable as well as some desktop specific features.
Users please read the guide. Developers, read on.
The desktop application comes bundled with:
- ComfyUI source code
- ComfyUI-Manager
- Electron, Chromium binaries, and node modules
Windows
We use the NSIS installer for Windows and it will install files in these locations:
Bundled Resources: %APPDATA%\Local\Programs\comfyui-electron
User files are stored here: %APPDATA%\ComfyUI
Automatic Updates: %APPDATA%\Local\comfyui-electron-updater
macOS
The macOS application is distributed as a DMG and will install files in:
~/Library/Application Support/ComfyUI
The application will be dragged into /Applications
Linux
~/.config/ComfyUI
ComfyUI will also write files to disk as you use it. You will also be asked to select a location to store ComfyUI files like models, inputs, outputs, custom_nodes and saved workflows.
An extra_model_config.yaml
is created to tell ComfyUI where to look for these files. You can edit this file to do things like add additional model files to the search path.
On Windows: %APPDATA%\ComfyUI\extra_model_config.yaml
On macOS: ~/Library/Application Support/ComfyUI/extra_model_config.yaml
On Linux: ~/.config/ComfyUI/extra_model_config.yaml
We use electron-log to log everything. Electron main process logs are in main.log
, and ComfyUI server logs are in comfyui_<date>.log
.
on Linux: ~/.config/{app name}/logs
on macOS: ~/Library/Logs/{app name}
on Windows: %AppData%\{app name}\logs
Make sure you have python 3.12+ installed. It is recommended to setup a virtual environment.
Linux/MacOS:
python -m venv venv
source venv/bin/activate
Windows:
py -3.12 -m venv venv
.\venv\Scripts\Activate.ps1
Visual studio 2019 or later with the Desktop C++ workload is required for node-gyp
. See the node-gyp
windows installation notes. Also requires the spectre-mitigated
libraries, found in the individual components section of the VS installer.
Confirmed working:
- Visual Studio Community 2022 - 17.12.1
- Desktop development with C++ workload
- MSVC v143 x64 spectre-mitigated libraries (Latest / v14.42-17.12)
Look for "MSVC v143 - VS 2022 C++ x64/x86 Spectre-mitigated libs" If you're using other toolsets, you may need their corresponding Spectre-mitigated libraries as well
We recommend using nvm to manage node versions. This project uses node v20.x.
Microsoft recommends nvm-windows on their Node.js on Windows page.
nvm install 20
nvm use 20
This project uses yarn
as its package manager. If you do not already have a yarn
binary available on your PATH, run:
# corepack is a set of utilities included with all recent distributions of node
corepack enable
yarn set version v4.5.0 # Look at the packageManager key in package.json for the exact version.
This will install a usable yarn
binary. Then, in the root directory of this repo (ie adjacent to the top-level package.json file), run:
yarn install
Before you can start the electron application, you need to download the ComfyUI source code and other things that are usually bundled with the application. We use comfy-cli to install everything.
With the python environment activated, install comfy-cli:
pip install -U comfy-cli
First, initialize the application resources by running make:assets:<gpu>
:
# populate the assets/ dir (Installs a fresh ComfyUI instance under assets/)
yarn make:assets:[amd|cpu|nvidia|macos]
This command will install ComfyUI under assets
, as well ComfyUI-Manager, and the frontend extension responsible for electron settings menu. The exact versions of each package is defined in package.json
.
Second, you need to install uv
. This will be bundled with the distributable, but we also need it locally.
yarn download:uv
You can then run start
to build/launch the code and a live buildserver that will automatically rebuild the code on any changes:
deactivate # Deactivate your existing python env to avoid influencing the
yarn start
You can also build the package and/or distributables using the make
command:
# build the platform-dependent package and any distributables
yarn make
# build cross-platform, e.g. windows from linux
yarn make --windows
If you get an error similar to:
The module '/electron/node_modules/node-pty/build/Release/pty.node' was compiled against a different Node.js version using NODE_MODULE_VERSION 115. This version of Node.js requires NODE_MODULE_VERSION 125. Please try re-compiling or re-installing the module (for instance, using `npm rebuild` or `npm install`).
You will need to rebuild the node-pty using electron-rebuild, for example:
npx electron-rebuild
or if that fails
yarn install -D @electron/rebuild
rm -rf node_modules
rm yarn.lock
yarn install
electron-rebuild
You may get errors reporting that the build is unable to find e.g. libnss3.so
if electron
prerequisites are not included in your distro. Find the correct package for your distro and install.
apt
example:
apt-get install libnss3
There are helpful debug launch scripts for VSCode / Cursor under .vscode/launch.json
. It will start the dev server as defined in .vscode/tasks.json
. Then attach the debugger.
This can be used simply by pressing F5
in VSCode or VSCode derivative.
The launch environment can be customised, e.g. add a "linux"
section to source your ~/.profile
(and other interactive config) when debugging in linux:
{
"version": "2.0.0",
"tasks": [
{
"linux": { "options": { "shell": { "args": ["-ci"] } } }
}
]
}
We use Todesktop to build and codesign our distributables. To make a new release:
- Make a PR with the semantic version. eg.
v1.0.1
- Add the label
Release
to the PR. - Merge the PR
- A build will automatically start and you can view it at https://app.todesktop.com
Follow the above steps for local development setup first.
# Authentication will be required.
yarn publish
A number of utility scripts are defined under the "scripts" field of package.json. For example, to clean up the build artifacts you can run:
yarn clean
# Remove files created by yarn make:assets:<gpu>
yarn:clean:assets
# clean:slate also removes node_modules
yarn clean:slate
At the onboarding step, you can opt-in to send us crash reports, which only include stack trace for unhandled exceptions and native crashes. These are really helpful to help us debug issues in lieu of an actual Github bug report. However, you can opt-out and nothing will ever be sent. We use Sentry to send crash reports. Code here.
In either case, no personal data, workflows or logs will be sent.
Windows (NVIDIA) NSIS x64: Download
macOS ARM: Download