Skip to main content

A CLI tool for installing and using ComfyUI.

Project description

Comfy-Cli: A Command Line Tool for ComfyUI

Test ComfyUI Example Workflows Test ComfyUI Windows with Default Workflow

comfy-cli is a command line tool that helps users easily install and manage ComfyUI, a powerful open-source machine learning framework. With comfy-cli, you can quickly set up ComfyUI, install packages, and manage custom nodes, all from the convenience of your terminal.

Demo

Comfy Command Demo

Features

  • 🚀 Easy installation of ComfyUI with a single command
  • 📦 Seamless package management for ComfyUI extensions and dependencies
  • 🔧 Custom node management for extending ComfyUI's functionality
  • 🗄️ Download checkpoints and save model hash
  • 💻 Cross-platform compatibility (Windows, macOS, Linux)
  • 📖 Comprehensive documentation and examples

Installation

  1. (Recommended, but not necessary) Enable virtual environment (venv/conda)

  2. To install comfy-cli, make sure you have Python 3.9 or higher installed on your system. Then, run the following command:

    pip install comfy-cli

Shell Autocomplete

To install autocompletion hints in your shell run:

comfy --install-completion

This enables you to type comfy [TAP] to autocomplete commands and options

Usage

Installing ComfyUI

To install ComfyUI using comfy, simply run:

comfy install

This command will download and set up the latest version of ComfyUI and ComfyUI-Manager on your system. If you run in a ComfyUI repo that has already been setup. The command will simply update the comfy.yaml file to reflect the local setup

  • comfy install --skip-manager: Install ComfyUI without ComfyUI-Manager.
  • comfy --workspace=<path> install: Install ComfyUI into <path>/ComfyUI.
  • For comfy install, if no path specification like --workspace, --recent, or --here is provided, it will be implicitly installed in <HOME>/comfy.

Specifying execution path

  • You can specify the path of ComfyUI where the command will be applied through path indicators as follows:

    • comfy --workspace=<path>: Run from the ComfyUI installed in the specified workspace.
    • comfy --recent: Run from the recently executed or installed ComfyUI.
    • comfy --here: Run from the ComfyUI located in the current directory.
  • --workspace, --recent, and --here options cannot be used simultaneously.

  • If there is no path indicator, the following priority applies:

    • Run from the default ComfyUI at the path specified by comfy set-default <path>.
    • Run from the recently executed or installed ComfyUI.
    • Run from the ComfyUI located in the current directory.
  • Example 1: To run the recently executed ComfyUI:

    • comfy --recent launch
  • Example 2: To install a package on the ComfyUI in the current directory:

    • comfy --here node install ComfyUI-Impact-Pack
  • Example 3: To update the automatically selected path of ComfyUI and custom nodes based on priority:

    • comfy node update all
  • You can use the comfy which command to check the path of the target workspace.

    • e.g comfy --recent which, comfy --here which, comfy which, ...

Default Setup

The default sets the option that will be executed by default when no specific workspace's ComfyUI has been set for the command.

comfy set-default <workspace path> ?[--launch-extras="<extra args>"]

  • --launch-extras option specifies extra args that are applied only during launch by default. However, if extras are specified at the time of launch, this setting is ignored.

Launch ComfyUI

Comfy provides commands that allow you to easily run the installed ComfyUI.

comfy launch

  • To run with default ComfyUI options:

    comfy launch -- <extra args...>

    comfy launch -- --cpu --listen 0.0.0.0

    • When you manually configure the extra options, the extras set by set-default will be overridden.
  • To run background

    comfy launch --background

    comfy --workspace=~/comfy launch --background -- --listen 10.0.0.10 --port 8000

    • Instances launched with --background are displayed in the "Background ComfyUI" section of comfy env, providing management functionalities for a single background instance only.
    • Since "Comfy Server Running" in comfy env only shows the default port 8188, it doesn't display ComfyUI running on a different port.
    • Background-running ComfyUI can be stopped with comfy stop.

Managing Custom Nodes

comfy provides a convenient way to manage custom nodes for extending ComfyUI's functionality. Here are some examples:

  • Show custom nodes' information:
comfy node [show|simple-show] [installed|enabled|not-installed|disabled|all|snapshot|snapshot-list]
                             ?[--channel <channel name>]
                             ?[--mode [remote|local|cache]]
  • comfy node show all --channel recent

    comfy node simple-show installed

    comfy node update all

    comfy node install ComfyUI-Impact-Pack

  • Managing snapshot:

    comfy node save-snapshot

    comfy node restore-snapshot <snapshot name>

  • Install dependencies:

    comfy node install-deps --deps=<deps .json file>

    comfy node install-deps --workflow=<workflow .json/.png file>

  • Generate deps:

    comfy node deps-in-workflow --workflow=<workflow .json/.png file> --output=<output deps .json file>

Bisect custom nodes

If you encounter bugs only with custom nodes enabled, and want to find out which custom node(s) causes the bug, the bisect tool can help you pinpoint the custom node that causes the issue.

  • comfy node bisect start: Start a new bisect session with optional ComfyUI launch args. It automatically marks the starting state as bad, and takes all enabled nodes when the command executes as the test set.
  • comfy node bisect good: Mark the current active set as good, indicating the problem is not within the test set.
  • comfy node bisect bad: Mark the current active set as bad, indicating the problem is within the test set.
  • comfy node bisect reset: Reset the current bisect session.

Managing Models

  • Model downloading

    comfy model download --url <URL> ?[--relative-path <PATH>] ?[--set-civitai-api-token <TOKEN>]

    • URL: CivitAI, huggingface file url, ...
  • Model remove

    comfy model remove ?[--relative-path <PATH>] --model-names <model names>

  • Model list

    comfy model list ?[--relative-path <PATH>]

Managing ComfyUI-Manager

  • disable GUI of ComfyUI-Manager (disable Manager menu and Server)

    comfy manager disable-gui

  • enable GUI of ComfyUI-Manager

    comfy manager enable-gui

  • Clear reserved startup action:

    comfy manager clear

Beta Feature: format of comfy-lock.yaml (WIP)

basic:

models:
  - model: [name of the model]
    url: [url of the source, e.g. https://huggingface.co/...]
    paths: [list of paths to the model]
      - path: [path to the model]
      - path: [path to the model]
    hashes: [hashes for the model]
      - hash: [hash]
        type: [AutoV1, AutoV2, SHA256, CRC32, and Blake3]
    type: [type of the model, e.g. diffuser, lora, etc.]

  - model:
  ...

# compatible with ComfyUI-Manager's .yaml snapshot
custom_nodes:
  comfyui: [commit hash]
  file_custom_nodes:
  - disabled: [bool]
    filename: [.py filename]
    ...
  git_custom_nodes:
    [git-url]:
      disabled: [bool]
      hash: [commit hash]
    ...

Analytics

We track analytics using Mixpanel to help us understand usage patterns and know where to prioritize our efforts. When you first download the cli, it will ask you to give consent. If at any point you wish to opt out:

comfy tracking disable

Check out the usage here: Mixpanel Board

Contributing

We welcome contributions to comfy-cli! If you have any ideas, suggestions, or bug reports, please open an issue on our GitHub repository. If you'd like to contribute code, please fork the repository and submit a pull request.

Check out the Dev Guide for more details.

License

comfy is released under the GNU General Public License v3.0.

Support

If you encounter any issues or have questions about comfy-cli, please open an issue on our GitHub repository or contact us on Discord. We'll be happy to assist you!

Happy diffusing with ComfyUI and comfy-cli! 🎉

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

comfy_cli-1.1.4.tar.gz (65.2 kB view details)

Uploaded Source

Built Distribution

comfy_cli-1.1.4-py3-none-any.whl (71.8 kB view details)

Uploaded Python 3

File details

Details for the file comfy_cli-1.1.4.tar.gz.

File metadata

  • Download URL: comfy_cli-1.1.4.tar.gz
  • Upload date:
  • Size: 65.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.5

File hashes

Hashes for comfy_cli-1.1.4.tar.gz
Algorithm Hash digest
SHA256 fd0726520acc6149e37750935d8109ff33b53301a086ac94a459a7f710e0c961
MD5 03b021082d495775979ba28eb4097d25
BLAKE2b-256 f17161f873fdfcf4e532b96e65a48f5fcddd60f364b6a1eaeefcc7060efa44c0

See more details on using hashes here.

File details

Details for the file comfy_cli-1.1.4-py3-none-any.whl.

File metadata

  • Download URL: comfy_cli-1.1.4-py3-none-any.whl
  • Upload date:
  • Size: 71.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.5

File hashes

Hashes for comfy_cli-1.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 69ac9bd0edd5b23bc3541b854d2c9d90dc4746decd7fc80eadcf48d8aa4d161b
MD5 61b89816fc6476c3259e4bde117b7c31
BLAKE2b-256 c9c53d2274e30b713a3031c8ca6a2dcfddabcb84e478cf9e2a71b7e8a0966d83

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page