Download ComfyUI Manager to manage custom nodes, install updates, and modify your ComfyUI installation. This application streamlines workflows by providing for simple installation, node management, and dependency handling, resulting in a more efficient and effective user experience.
Follow the steps below to download ComfyUI Manager.
1. Click the Download Link Below:
2. Clone or Download the Files:
Option 1: Clone via Git
If you have Git installed, enter your terminal or command line and run the following command to clone the repository:
bash
git clone YOUR_DOWNLOAD_LINK_HERE
3. Extract the Files (if ZIP was downloaded):
If you picked the ZIP download option, after downloading the archive, extract it to a spot on your computer where you will save the ComfyUI Manager files.
4. Ready to Install:
After downloading, extracting, or cloning the repository, you can begin installing ComfyUI Manager. The Installation Guide section contains thorough instructions on how to install it.
To add ComfyUI Manager to your existing ComfyUI setup, follow these steps:
Open the terminal or command prompt.
Navigate to the custom_nodes directory in your ComfyUI installation folder.
Example:
Clone the ComfyUI Manager repository
Use the command below to download and install the manager in your setup.
Once completed, ComfyUI Manager will be integrated into your environment and ready for usage.
If you’re using the portable version of ComfyUI, follow these instructions to install ComfyUI Manager:
scripts/install-manager-for-portable-version.bat
(install-manager-for-portable-version.bat)
batch file to finalize the setup.
Following these procedures, ComfyUI Manager will be seamlessly integrated into your portable ComfyUI setup.
This solution uses the comfy-cli program to install both ComfyUI and ComfyUI Manager at the same time. It is the recommended option because of its simplicity and robust command-line capabilities.
python -m venv venv
venv\Scripts\activate
pip install comfy-cli
comfy install
python -m venv venv
source venv/bin/activate
pip install comfy-cli
comfy install
This will automatically download and install both ComfyUI and ComfyUI Manager in one step.
To install ComfyUI and ComfyUI Manager on Linux, use a Python virtual environment:
Make sure the following are installed:
git clone https://github.com/comfyanonymous /ComfyUI
cd ComfyUI/custom_nodes
git clone https://github.com/ltdrdata/ComfyUI-Manager comfyui-manager
cd ..
python -m venv venv
source venv/bin/activate
python -m pip install torch torchvision torchaudio –extra-index-url https://download.pytorch.org /whl/cu121
python -m pip install -r requirements.txt
python -m pip install -r custom_nodes/comfyui-manager/requirements.txt
cd ..
echo “#!/bin/bash” > run_gpu.sh
echo “cd ComfyUI” >> run_gpu.sh
echo “source venv/bin/activate” >> run_gpu.sh
echo “python main.py –preview-method auto” >> run_gpu.sh
chmod +x run_gpu.sh
echo “#!/bin/bash” > run_cpu.sh
echo “cd ComfyUI” >> run_cpu.sh
echo “source venv/bin/activate” >> run_cpu.sh
echo “python main.py –preview-method auto –cpu” >> run_cpu.sh
chmod +x run_cpu.sh
chmod +x install-comfyui-venv-linux.sh
./install-comfyui-venv-linux.sh
This will install ComfyUI and the ComfyUI Manager in a subfolder and create startup scripts (run_gpu.sh and run_cpu.sh) for GPU and CPU usage.
To ensure correct installation and reliable functioning of ComfyUI Manager, carefully follow these directions.
These incorrect structures can cause:
If any of these problems arise, delete all related files from ComfyUI/custom_nodes and reinstall using the appropriate git clone procedure.
To activate ComfyUI after installation, use the following command:
bash
./run_gpu.sh # For systems with a GPU
./run_cpu.sh # For CPU-only systems
This setup includes a Google Colab notebook that allows you to simply install and run ComfyUI, including ComfyUI Manager, straight from your browser, eliminating the need for local installation.
By using the notebook, you get:
To get started, simply click the provided link and follow the instructions in the notebook environment.
The official ComfyUI Manager documentation contains advanced functionality, thorough configuration choices, development notes, component sharing, and other information.
Explore the Full Documentation and Features. This includes:
Use this resource for deeper customization, troubleshooting insights, and ongoing updates from the ComfyUI Manager team.