| #!/bin/bash |
|
|
| |
| |
|
|
| set -e |
|
|
| echo "🚀 Installing ComfyUI Custom Nodes for Research Project" |
| echo "=======================================================" |
|
|
| |
| cd custom_nodes |
|
|
| echo "📦 Installing essential custom nodes..." |
|
|
| |
| echo "Installing ComfyUI Manager..." |
| if [ ! -d "ComfyUI-Manager" ]; then |
| git clone https://github.com/ltdrdata/ComfyUI-Manager.git |
| else |
| echo "✅ ComfyUI Manager already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI IPAdapter Plus..." |
| if [ ! -d "ComfyUI_IPAdapter_plus" ]; then |
| git clone https://github.com/cubiq/ComfyUI_IPAdapter_plus.git |
| else |
| echo "✅ ComfyUI IPAdapter Plus already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI Comfyroll Custom Nodes..." |
| if [ ! -d "ComfyUI_Comfyroll_CustomNodes" ]; then |
| git clone https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes.git |
| else |
| echo "✅ ComfyUI Comfyroll Custom Nodes already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI Impact Pack..." |
| if [ ! -d "ComfyUI-Impact-Pack" ]; then |
| git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack.git |
| else |
| echo "✅ ComfyUI Impact Pack already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI Impact Subpack..." |
| if [ ! -d "ComfyUI-Impact-Subpack" ]; then |
| git clone https://github.com/ltdrdata/ComfyUI-Impact-Subpack.git |
| else |
| echo "✅ ComfyUI Impact Subpack already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI Inspire Pack..." |
| if [ ! -d "ComfyUI-Inspire-Pack" ]; then |
| git clone https://github.com/ltdrdata/ComfyUI-Inspire-Pack.git |
| else |
| echo "✅ ComfyUI Inspire Pack already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI Custom Scripts..." |
| if [ ! -d "ComfyUI-Custom-Scripts" ]; then |
| git clone https://github.com/pythongosssss/ComfyUI-Custom-Scripts.git |
| else |
| echo "✅ ComfyUI Custom Scripts already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI Dynamic Prompts..." |
| if [ ! -d "comfyui-dynamicprompts" ]; then |
| git clone https://github.com/adieyal/comfyui-dynamicprompts.git |
| else |
| echo "✅ ComfyUI Dynamic Prompts already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI KJNodes..." |
| if [ ! -d "comfyui-kjnodes" ]; then |
| git clone https://github.com/kijai/ComfyUI-KJNodes.git comfyui-kjnodes |
| else |
| echo "✅ ComfyUI KJNodes already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI Ultimate SD Upscale..." |
| if [ ! -d "ComfyUI_UltimateSDUpscale" ]; then |
| git clone https://github.com/ssitu/ComfyUI_UltimateSDUpscale.git |
| else |
| echo "✅ ComfyUI Ultimate SD Upscale already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI GGUF..." |
| if [ ! -d "ComfyUI-GGUF" ]; then |
| git clone https://github.com/city96/ComfyUI-GGUF.git |
| else |
| echo "✅ ComfyUI GGUF already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI Image Filters..." |
| if [ ! -d "ComfyUI-Image-Filters" ]; then |
| git clone https://github.com/spacepxl/ComfyUI-Image-Filters.git |
| else |
| echo "✅ ComfyUI Image Filters already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI Depth Anything V2..." |
| if [ ! -d "comfyui-depthanythingv2" ]; then |
| git clone https://github.com/kijai/ComfyUI-DepthAnythingV2.git comfyui-depthanythingv2 |
| else |
| echo "✅ ComfyUI Depth Anything V2 already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI RMBG..." |
| if [ ! -d "comfyui-rmbg" ]; then |
| git clone https://github.com/Jcd1230/rembg-comfyui-node.git comfyui-rmbg |
| else |
| echo "✅ ComfyUI RMBG already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI FizzNodes..." |
| if [ ! -d "comfyui_fizznodes" ]; then |
| git clone https://github.com/FizzleDorf/ComfyUI_FizzNodes.git comfyui_fizznodes |
| else |
| echo "✅ ComfyUI FizzNodes already exists" |
| fi |
|
|
| |
| echo "Installing ComfyUI PanoCard..." |
| if [ ! -d "ComfyUI-PanoCard" ]; then |
| git clone https://github.com/Fannovel16/ComfyUI-PanoCard.git |
| else |
| echo "✅ ComfyUI PanoCard already exists" |
| fi |
|
|
| |
| echo "Installing RGThree ComfyUI..." |
| if [ ! -d "rgthree-comfy" ]; then |
| git clone https://github.com/rgthree/rgthree-comfy.git |
| else |
| echo "✅ RGThree ComfyUI already exists" |
| fi |
|
|
| |
| echo "Installing SD Dynamic Thresholding..." |
| if [ ! -d "sd-dynamic-thresholding" ]; then |
| git clone https://github.com/mcmonkeyprojects/sd-dynamic-thresholding.git |
| else |
| echo "✅ SD Dynamic Thresholding already exists" |
| fi |
|
|
| |
| echo "Installing WAS Node Suite..." |
| if [ ! -d "was-node-suite-comfyui" ]; then |
| git clone https://github.com/WASasquatch/was-node-suite-comfyui.git |
| else |
| echo "✅ WAS Node Suite already exists" |
| fi |
|
|
| |
| echo "Installing CG Image Filter..." |
| if [ ! -d "cg-image-filter" ]; then |
| git clone https://github.com/chrisgoringe/cg-image-filter.git |
| else |
| echo "✅ CG Image Filter already exists" |
| fi |
|
|
| |
| echo "Installing Derfuu Modded Nodes..." |
| if [ ! -d "derfuu_comfyui_moddednodes" ]; then |
| git clone https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes.git derfuu_comfyui_moddednodes |
| else |
| echo "✅ Derfuu Modded Nodes already exists" |
| fi |
|
|
| echo "" |
| echo "✅ All custom nodes installed successfully!" |
| echo "" |
| echo "📋 Next steps:" |
| echo "1. Restart ComfyUI to load the new nodes" |
| echo "2. Some nodes may require additional dependencies - check individual README files" |
| echo "3. Use ComfyUI Manager to install any missing models or resolve dependencies" |
| echo "4. Check the console for any error messages during startup" |
| echo "" |
| echo "🎉 Installation complete! Your ComfyUI is ready for research workflows." |
|
|