1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
| import os import subprocess import socket import requests import shutil
civitai_api_key = "" comfyUI_url = "https://github.com/comfyanonymous/ComfyUI.git" plugins_units = [ { "name": "ComfyUI-Manager", "url": "https://github.com/ltdrdata/ComfyUI-Manager.git", "has_requirements": True }, { "name": "comfyui_controlnet_aux", "url": "https://github.com/Fannovel16/comfyui_controlnet_aux/", "has_requirements": True }, { "name": "ComfyUI-Image-Compressor", "url": "https://github.com/liuqianhonga/ComfyUI-Image-Compressor.git", "has_requirements": False }, { "name": "ComfyUI-WD14-Tagger", "url": "https://github.com/pythongosssss/ComfyUI-WD14-Tagger", "has_requirements": True }, { "name": "ComfyUI_Comfyroll_CustomNodes", "url": "https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes.git", "has_requirements": False }, { "name": "ComfyLiterals", "url": "https://github.com/M1kep/ComfyLiterals.git", "has_requirements": False }, { "name": "ComfyUI-Advanced-ControlNet", "url": "https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet.git", "has_requirements": False }, { "name": "ComfyUI_essentials", "url": "https://github.com/cubiq/ComfyUI_essentials.git", "has_requirements": False }, { "name": "ComfyUI-tbox", "url": "https://github.com/ai-shizuka/ComfyUI-tbox.git", "has_requirements": False } ]
models_units = [ { "api_key": civitai_api_key, "name": "fantasmPonyXL_v10.safetensors", "url": "https://civitai.com/api/download/models/742228" }, { "api_key": "", "name": "photonium_v10.safetensors", "url": "https://civitai.com/api/download/models/302809" } ]
controlnet_units = [ { "name": "CN-anytest_v4-marged_pn_dim256.safetensors", "url": "https://huggingface.co/2vXpSwA7/iroiro-lora/resolve/main/test_controlnet2/CN-anytest_v4-marged_pn_dim256.safetensors" }, { "name": "diffusers_xl_canny_full.safetensors", "url": "https://huggingface.co/lllyasviel/sd_control_collection/resolve/d1b278d0d1103a3a7c4f7c2c327d236b082a75b1/diffusers_xl_canny_full.safetensors" }, { "name": "diffusers_xl_depth_full.safetensors", "url": "https://huggingface.co/lllyasviel/sd_control_collection/resolve/05cb13f62356f78d7c3a4ef10e460c5cda6bef8b/diffusers_xl_depth_full.safetensors" } ]
upscale_units = [ { "name": "2x_APISR_RRDB_GAN_generator.pth", "url": "https://huggingface.co/camenduru/APISR/resolve/main/2x_APISR_RRDB_GAN_generator.pth" } ]
def run_command(command, shell=False): """Run command and print output 运行命令并打印输出""" result = subprocess.run(command, shell=shell, text=True) return result
def check_exists(path): """Check if file or directory exists 检查文件或目录是否存在""" return os.path.exists(path)
def install_plugin(plugin): """Install ComfyUI plugin 安装 ComfyUI 插件""" if check_exists(plugin['name']): print(f"Plugin {plugin['name']} already exists, skipping...") return print(f"Installing plugin: {plugin['name']}...") run_command(["git", "clone", plugin['url']])
if plugin['has_requirements']: os.chdir(plugin['name']) run_command(["pip", "install", "-r", "requirements.txt"]) os.chdir("..")
def download_file(url, filename): """Cross-platform file download function 跨平台文件下载函数 Args: url: 下载链接 filename: 保存的文件名 """ if shutil.which('wget'): run_command(["wget", "-q", "--show-progress", url, "-O", filename]) return if shutil.which('curl'): run_command(["curl", "-L", "-o", filename, url]) return try: print(f"Downloading {filename}...") response = requests.get(url, stream=True) total_size = int(response.headers.get('content-length', 0)) with open(filename, 'wb') as file: if total_size == 0: file.write(response.content) else: downloaded = 0 for data in response.iter_content(chunk_size=8192): downloaded += len(data) file.write(data) done = int(50 * downloaded / total_size) print(f"\r[{'=' * done}{' ' * (50-done)}] {downloaded}/{total_size} bytes", end='') print("\nDownload completed!") except Exception as e: print(f"Error downloading file: {e}") raise
def install_models(model): """Install AI models 安装 AI 模型""" if check_exists(model['name']): print(f"Model {model['name']} already exists, skipping...") return print(f"Installing model: {model['name']}...") if model['api_key']: model_url = f"{model['url']}?token={model['api_key']}" else: model_url = model['url'] download_file(model_url, model['name']) def install_controlnet(controlnet): """Install ControlNet models 安装 ControlNet 模型""" if check_exists(controlnet['name']): print(f"ControlNet {controlnet['name']} already exists, skipping...") return print(f"Installing ControlNet: {controlnet['name']}...") download_file(controlnet['url'], controlnet['name'])
def install_upscale(upscale): """Install upscale models 安装超分辨率模型""" if check_exists(upscale['name']): print(f"Upscale model {upscale['name']} already exists, skipping...") return print(f"Installing upscale model: {upscale['name']}...") download_file(upscale['url'], upscale['name'])
def get_local_ip(): """Get local IP address 获取本机IP地址""" try: addresses = socket.getaddrinfo(socket.gethostname(), None) for addr in addresses: ip = addr[4][0] if ip.startswith('192.168.'): return ip s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) s.connect(("8.8.8.8", 80)) ip = s.getsockname()[0] s.close() return ip except Exception as e: print(f"Error getting IP: {e}") return "127.0.0.1"
def clear_console(): """Clear console screen 清空控制台屏幕""" if os.name == 'nt': os.system('cls') else: os.system('clear')
def main(): """Main function to setup and run ComfyUI 主函数:设置并运行ComfyUI""" if not civitai_api_key: print("Please set the civitai_api_key variable at the beginning of the script") print("请在脚本开头设置 civitai_api_key 变量\n") print("You can get your API key from: https://civitai.com/user/account") print("你可以在这里获取 API key:https://civitai.com/user/account\n") return print("Cloning repository / 克隆仓库...") run_command(["git", "clone", comfyUI_url]) os.chdir("ComfyUI")
os.chdir("custom_nodes") for plugin in plugins_units: install_plugin(plugin) os.chdir("..")
os.chdir("models/checkpoints") for model in models_units: install_models(model) os.chdir("../..")
os.chdir("models/controlnet") for controlnet in controlnet_units: install_controlnet(controlnet) os.chdir("../..")
os.chdir("models/upscale_models") for upscale in upscale_units: install_upscale(upscale) os.chdir("../..")
run_command(["pip", "install", "-r", "requirements.txt"])
local_ip = get_local_ip() print(f"⭐️⭐️⭐️\nAddress: http://{local_ip}:8188\n⭐️⭐️⭐️\n") run_command(["python", "main.py", "--listen"])
if __name__ == "__main__": main()
|