From fabd600a83ce3730ffba0d9c158c9d5f068f79fb Mon Sep 17 00:00:00 2001 From: "John D. Pope" Date: Wed, 24 Jan 2024 09:55:46 +1100 Subject: [PATCH 1/4] helper to configure missing dependencies --- INSTANTID WORKFLOWS/README.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 INSTANTID WORKFLOWS/README.md diff --git a/INSTANTID WORKFLOWS/README.md b/INSTANTID WORKFLOWS/README.md new file mode 100644 index 0000000..2263475 --- /dev/null +++ b/INSTANTID WORKFLOWS/README.md @@ -0,0 +1,4 @@ +custom_nodes +gh repo clone ZHO-ZHO-ZHO/ComfyUI-ArtGallery +gh repo clone ZHO-ZHO-ZHO/ComfyUI-Layout-Zh-Chinese +gh repo clone ZHO-ZHO-ZHO/ComfyUI-Gemini \ No newline at end of file From 93dfd2497222411bf0294c23ad3b4631809d6ced Mon Sep 17 00:00:00 2001 From: "John D. Pope" Date: Wed, 24 Jan 2024 10:40:05 +1100 Subject: [PATCH 2/4] Update README.md --- INSTANTID WORKFLOWS/README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/INSTANTID WORKFLOWS/README.md b/INSTANTID WORKFLOWS/README.md index 2263475..39d0a8f 100644 --- a/INSTANTID WORKFLOWS/README.md +++ b/INSTANTID WORKFLOWS/README.md @@ -1,4 +1,14 @@ -custom_nodes +``` +cd custom_nodes gh repo clone ZHO-ZHO-ZHO/ComfyUI-ArtGallery +ComfyUI-ArtGallery +pip install -r requirements.txt +cd.. gh repo clone ZHO-ZHO-ZHO/ComfyUI-Layout-Zh-Chinese -gh repo clone ZHO-ZHO-ZHO/ComfyUI-Gemini \ No newline at end of file +cd ComfyUI-Layout-Zh-Chinese +pip install -r requirements.txt +cd.. +gh repo clone ZHO-ZHO-ZHO/ComfyUI-Gemini +cd ComfyUI-Gemini +pip install -r requirements.txt +``` From 78e2bc28236ab118ea8e9b6b7a57a41f1aa12169 Mon Sep 17 00:00:00 2001 From: "John D. Pope" Date: Wed, 24 Jan 2024 15:56:15 +1100 Subject: [PATCH 3/4] Update README.md --- INSTANTID WORKFLOWS/README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/INSTANTID WORKFLOWS/README.md b/INSTANTID WORKFLOWS/README.md index 39d0a8f..8a043e8 100644 --- a/INSTANTID WORKFLOWS/README.md +++ b/INSTANTID WORKFLOWS/README.md @@ -1,3 +1,6 @@ +POINT controlnet to full path controlnet-openpose-sdxl-1.0 + + ``` cd custom_nodes gh repo clone ZHO-ZHO-ZHO/ComfyUI-ArtGallery @@ -11,4 +14,8 @@ cd.. gh repo clone ZHO-ZHO-ZHO/ComfyUI-Gemini cd ComfyUI-Gemini pip install -r requirements.txt +cd .. +cd models/controlnet +git lfs install +git clone https://huggingface.co/thibaud/controlnet-openpose-sdxl-1.0 ``` From 094d678748d78acc0ffa9a3d7f837384171a3b09 Mon Sep 17 00:00:00 2001 From: "John D. Pope" Date: Wed, 24 Jan 2024 17:23:36 +1100 Subject: [PATCH 4/4] Update README.md --- INSTANTID WORKFLOWS/README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/INSTANTID WORKFLOWS/README.md b/INSTANTID WORKFLOWS/README.md index 8a043e8..8c0c5e8 100644 --- a/INSTANTID WORKFLOWS/README.md +++ b/INSTANTID WORKFLOWS/README.md @@ -1,7 +1,15 @@ POINT controlnet to full path controlnet-openpose-sdxl-1.0 - +make sure you download controlnet into appropriate folder. +/ComfyUI/custom_nodes/ComfyUI-InstantID/checkpoints/ControlNetModel +```python +from huggingface_hub import hf_hub_download +hf_hub_download(repo_id="InstantX/InstantID", filename="ControlNetModel/config.json", local_dir="./checkpoints") +hf_hub_download(repo_id="InstantX/InstantID", filename="ControlNetModel/diffusion_pytorch_model.safetensors", local_dir="./checkpoints") +hf_hub_download(repo_id="InstantX/InstantID", filename="ip-adapter.bin", local_dir="./checkpoints") ``` + +```shell cd custom_nodes gh repo clone ZHO-ZHO-ZHO/ComfyUI-ArtGallery ComfyUI-ArtGallery @@ -14,8 +22,4 @@ cd.. gh repo clone ZHO-ZHO-ZHO/ComfyUI-Gemini cd ComfyUI-Gemini pip install -r requirements.txt -cd .. -cd models/controlnet -git lfs install -git clone https://huggingface.co/thibaud/controlnet-openpose-sdxl-1.0 ```