From 8f2d950224bcce5f0113bf8e2c2b63e34fcccc08 Mon Sep 17 00:00:00 2001 From: "Dr.Lt.Data" Date: Sun, 17 Mar 2024 11:47:40 +0900 Subject: [PATCH] update DB fix typo: https://github.com/ltdrdata/ComfyUI-Manager/issues/490 --- custom-node-list.json | 20 ++++++++++---------- node_db/new/custom-node-list.json | 10 ++++++++++ scripts/install-comfyui-venv-linux.sh | 2 +- 3 files changed, 21 insertions(+), 11 deletions(-) diff --git a/custom-node-list.json b/custom-node-list.json index d0e6364..08b4bf3 100644 --- a/custom-node-list.json +++ b/custom-node-list.json @@ -6148,6 +6148,16 @@ "install_type": "git-clone", "description": "This ComfyUI custom node, named ControlNet Auxiliar, is designed to provide auxiliary functionalities for image processing tasks. It is particularly useful for various image manipulation and enhancement operations. The node is integrated with functionalities for converting images between different formats and applying various image processing techniques." }, + { + "author": "MarkoCa1", + "title": "ComfyUI_Text", + "reference": "https://github.com/MarkoCa1/ComfyUI-Text", + "files": [ + "https://github.com/MarkoCa1/ComfyUI-Text" + ], + "install_type": "git-clone", + "description": "Text." + }, @@ -6515,16 +6525,6 @@ ], "install_type": "unzip", "description": "This is a node to convert an image into a CMYK Halftone dot image." - }, - { - "author": "MarkoCa1", - "title": "ComfyUI_Text", - "reference": "https://github.com/MarkoCa1/ComfyUI-Text", - "files": [ - "https://github.com/MarkoCa1/ComfyUI-Text" - ], - "install_type": "git-clone", - "description": "Text." } ] } diff --git a/node_db/new/custom-node-list.json b/node_db/new/custom-node-list.json index 6773516..a7e76b6 100644 --- a/node_db/new/custom-node-list.json +++ b/node_db/new/custom-node-list.json @@ -30,6 +30,16 @@ "install_type": "git-clone", "description": "This ComfyUI custom node, named ControlNet Auxiliar, is designed to provide auxiliary functionalities for image processing tasks. It is particularly useful for various image manipulation and enhancement operations. The node is integrated with functionalities for converting images between different formats and applying various image processing techniques." }, + { + "author": "MarkoCa1", + "title": "ComfyUI_Text", + "reference": "https://github.com/MarkoCa1/ComfyUI-Text", + "files": [ + "https://github.com/MarkoCa1/ComfyUI-Text" + ], + "install_type": "git-clone", + "description": "Text." + }, { "author": "dmMaze", "title": "Sketch2Manga", diff --git a/scripts/install-comfyui-venv-linux.sh b/scripts/install-comfyui-venv-linux.sh index 7b53e85..fecf3d5 100755 --- a/scripts/install-comfyui-venv-linux.sh +++ b/scripts/install-comfyui-venv-linux.sh @@ -4,7 +4,7 @@ git clone https://github.com/ltdrdata/ComfyUI-Manager cd .. python -m venv venv source venv/bin/activate -pythoh -m pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu121 +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 ..