Spaces:
Running
Running
File size: 95,438 Bytes
afe8092 |
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 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 |
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "aaaaaaaaaa"
},
"source": [
"Git clone the repo and install the requirements. (ignore the pip errors about protobuf)"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"id": "bbbbbbbbbb",
"outputId": "915edb20-60f8-4c9f-c5ab-72a564602360",
"colab": {
"base_uri": "https://localhost:8080/"
}
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"-= Initial setup ComfyUI =-\n",
"Cloning into 'ComfyUI'...\n",
"remote: Enumerating objects: 23961, done.\u001b[K\n",
"remote: Counting objects: 100% (24/24), done.\u001b[K\n",
"remote: Compressing objects: 100% (18/18), done.\u001b[K\n",
"remote: Total 23961 (delta 9), reused 6 (delta 6), pack-reused 23937 (from 2)\u001b[K\n",
"Receiving objects: 100% (23961/23961), 72.62 MiB | 14.82 MiB/s, done.\n",
"Resolving deltas: 100% (16113/16113), done.\n",
"/content/ComfyUI\n",
"-= Updating ComfyUI =-\n",
"Already up to date.\n",
"-= Install dependencies =-\n",
"Requirement already satisfied: accelerate in /usr/local/lib/python3.12/dist-packages (1.10.1)\n",
"Requirement already satisfied: numpy<3.0.0,>=1.17 in /usr/local/lib/python3.12/dist-packages (from accelerate) (2.0.2)\n",
"Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.12/dist-packages (from accelerate) (25.0)\n",
"Requirement already satisfied: psutil in /usr/local/lib/python3.12/dist-packages (from accelerate) (5.9.5)\n",
"Requirement already satisfied: pyyaml in /usr/local/lib/python3.12/dist-packages (from accelerate) (6.0.2)\n",
"Requirement already satisfied: torch>=2.0.0 in /usr/local/lib/python3.12/dist-packages (from accelerate) (2.8.0+cu126)\n",
"Requirement already satisfied: huggingface_hub>=0.21.0 in /usr/local/lib/python3.12/dist-packages (from accelerate) (0.34.4)\n",
"Requirement already satisfied: safetensors>=0.4.3 in /usr/local/lib/python3.12/dist-packages (from accelerate) (0.6.2)\n",
"Requirement already satisfied: filelock in /usr/local/lib/python3.12/dist-packages (from huggingface_hub>=0.21.0->accelerate) (3.19.1)\n",
"Requirement already satisfied: fsspec>=2023.5.0 in /usr/local/lib/python3.12/dist-packages (from huggingface_hub>=0.21.0->accelerate) (2025.3.0)\n",
"Requirement already satisfied: requests in /usr/local/lib/python3.12/dist-packages (from huggingface_hub>=0.21.0->accelerate) (2.32.4)\n",
"Requirement already satisfied: tqdm>=4.42.1 in /usr/local/lib/python3.12/dist-packages (from huggingface_hub>=0.21.0->accelerate) (4.67.1)\n",
"Requirement already satisfied: typing-extensions>=3.7.4.3 in /usr/local/lib/python3.12/dist-packages (from huggingface_hub>=0.21.0->accelerate) (4.15.0)\n",
"Requirement already satisfied: hf-xet<2.0.0,>=1.1.3 in /usr/local/lib/python3.12/dist-packages (from huggingface_hub>=0.21.0->accelerate) (1.1.9)\n",
"Requirement already satisfied: setuptools in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (75.2.0)\n",
"Requirement already satisfied: sympy>=1.13.3 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (1.13.3)\n",
"Requirement already satisfied: networkx in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (3.5)\n",
"Requirement already satisfied: jinja2 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (3.1.6)\n",
"Requirement already satisfied: nvidia-cuda-nvrtc-cu12==12.6.77 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (12.6.77)\n",
"Requirement already satisfied: nvidia-cuda-runtime-cu12==12.6.77 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (12.6.77)\n",
"Requirement already satisfied: nvidia-cuda-cupti-cu12==12.6.80 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (12.6.80)\n",
"Requirement already satisfied: nvidia-cudnn-cu12==9.10.2.21 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (9.10.2.21)\n",
"Requirement already satisfied: nvidia-cublas-cu12==12.6.4.1 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (12.6.4.1)\n",
"Requirement already satisfied: nvidia-cufft-cu12==11.3.0.4 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (11.3.0.4)\n",
"Requirement already satisfied: nvidia-curand-cu12==10.3.7.77 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (10.3.7.77)\n",
"Requirement already satisfied: nvidia-cusolver-cu12==11.7.1.2 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (11.7.1.2)\n",
"Requirement already satisfied: nvidia-cusparse-cu12==12.5.4.2 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (12.5.4.2)\n",
"Requirement already satisfied: nvidia-cusparselt-cu12==0.7.1 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (0.7.1)\n",
"Requirement already satisfied: nvidia-nccl-cu12==2.27.3 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (2.27.3)\n",
"Requirement already satisfied: nvidia-nvtx-cu12==12.6.77 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (12.6.77)\n",
"Requirement already satisfied: nvidia-nvjitlink-cu12==12.6.85 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (12.6.85)\n",
"Requirement already satisfied: nvidia-cufile-cu12==1.11.1.6 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (1.11.1.6)\n",
"Requirement already satisfied: triton==3.4.0 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (3.4.0)\n",
"Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.12/dist-packages (from sympy>=1.13.3->torch>=2.0.0->accelerate) (1.3.0)\n",
"Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.12/dist-packages (from jinja2->torch>=2.0.0->accelerate) (3.0.2)\n",
"Requirement already satisfied: charset_normalizer<4,>=2 in /usr/local/lib/python3.12/dist-packages (from requests->huggingface_hub>=0.21.0->accelerate) (3.4.3)\n",
"Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.12/dist-packages (from requests->huggingface_hub>=0.21.0->accelerate) (3.10)\n",
"Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.12/dist-packages (from requests->huggingface_hub>=0.21.0->accelerate) (2.5.0)\n",
"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.12/dist-packages (from requests->huggingface_hub>=0.21.0->accelerate) (2025.8.3)\n",
"Looking in indexes: https://download.pytorch.org/whl/cu121\n",
"Requirement already satisfied: torch in /usr/local/lib/python3.12/dist-packages (2.8.0+cu126)\n",
"Requirement already satisfied: torchvision in /usr/local/lib/python3.12/dist-packages (0.23.0+cu126)\n",
"Requirement already satisfied: torchaudio in /usr/local/lib/python3.12/dist-packages (2.8.0+cu126)\n",
"Requirement already satisfied: filelock in /usr/local/lib/python3.12/dist-packages (from torch) (3.19.1)\n",
"Requirement already satisfied: typing-extensions>=4.10.0 in /usr/local/lib/python3.12/dist-packages (from torch) (4.15.0)\n",
"Requirement already satisfied: setuptools in /usr/local/lib/python3.12/dist-packages (from torch) (75.2.0)\n",
"Requirement already satisfied: sympy>=1.13.3 in /usr/local/lib/python3.12/dist-packages (from torch) (1.13.3)\n",
"Requirement already satisfied: networkx in /usr/local/lib/python3.12/dist-packages (from torch) (3.5)\n",
"Requirement already satisfied: jinja2 in /usr/local/lib/python3.12/dist-packages (from torch) (3.1.6)\n",
"Requirement already satisfied: fsspec in /usr/local/lib/python3.12/dist-packages (from torch) (2025.3.0)\n",
"Requirement already satisfied: nvidia-cuda-nvrtc-cu12==12.6.77 in /usr/local/lib/python3.12/dist-packages (from torch) (12.6.77)\n",
"Requirement already satisfied: nvidia-cuda-runtime-cu12==12.6.77 in /usr/local/lib/python3.12/dist-packages (from torch) (12.6.77)\n",
"Requirement already satisfied: nvidia-cuda-cupti-cu12==12.6.80 in /usr/local/lib/python3.12/dist-packages (from torch) (12.6.80)\n",
"Requirement already satisfied: nvidia-cudnn-cu12==9.10.2.21 in /usr/local/lib/python3.12/dist-packages (from torch) (9.10.2.21)\n",
"Requirement already satisfied: nvidia-cublas-cu12==12.6.4.1 in /usr/local/lib/python3.12/dist-packages (from torch) (12.6.4.1)\n",
"Requirement already satisfied: nvidia-cufft-cu12==11.3.0.4 in /usr/local/lib/python3.12/dist-packages (from torch) (11.3.0.4)\n",
"Requirement already satisfied: nvidia-curand-cu12==10.3.7.77 in /usr/local/lib/python3.12/dist-packages (from torch) (10.3.7.77)\n",
"Requirement already satisfied: nvidia-cusolver-cu12==11.7.1.2 in /usr/local/lib/python3.12/dist-packages (from torch) (11.7.1.2)\n",
"Requirement already satisfied: nvidia-cusparse-cu12==12.5.4.2 in /usr/local/lib/python3.12/dist-packages (from torch) (12.5.4.2)\n",
"Requirement already satisfied: nvidia-cusparselt-cu12==0.7.1 in /usr/local/lib/python3.12/dist-packages (from torch) (0.7.1)\n",
"Requirement already satisfied: nvidia-nccl-cu12==2.27.3 in /usr/local/lib/python3.12/dist-packages (from torch) (2.27.3)\n",
"Requirement already satisfied: nvidia-nvtx-cu12==12.6.77 in /usr/local/lib/python3.12/dist-packages (from torch) (12.6.77)\n",
"Requirement already satisfied: nvidia-nvjitlink-cu12==12.6.85 in /usr/local/lib/python3.12/dist-packages (from torch) (12.6.85)\n",
"Requirement already satisfied: nvidia-cufile-cu12==1.11.1.6 in /usr/local/lib/python3.12/dist-packages (from torch) (1.11.1.6)\n",
"Requirement already satisfied: triton==3.4.0 in /usr/local/lib/python3.12/dist-packages (from torch) (3.4.0)\n",
"Requirement already satisfied: numpy in /usr/local/lib/python3.12/dist-packages (from torchvision) (2.0.2)\n",
"Requirement already satisfied: pillow!=8.3.*,>=5.3.0 in /usr/local/lib/python3.12/dist-packages (from torchvision) (11.3.0)\n",
"Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.12/dist-packages (from sympy>=1.13.3->torch) (1.3.0)\n",
"Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.12/dist-packages (from jinja2->torch) (3.0.2)\n",
"Collecting torchsde\n",
" Downloading torchsde-0.2.6-py3-none-any.whl.metadata (5.3 kB)\n",
"Requirement already satisfied: numpy>=1.19 in /usr/local/lib/python3.12/dist-packages (from torchsde) (2.0.2)\n",
"Requirement already satisfied: scipy>=1.5 in /usr/local/lib/python3.12/dist-packages (from torchsde) (1.16.1)\n",
"Requirement already satisfied: torch>=1.6.0 in /usr/local/lib/python3.12/dist-packages (from torchsde) (2.8.0+cu126)\n",
"Collecting trampoline>=0.1.2 (from torchsde)\n",
" Downloading trampoline-0.1.2-py3-none-any.whl.metadata (10 kB)\n",
"Requirement already satisfied: filelock in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (3.19.1)\n",
"Requirement already satisfied: typing-extensions>=4.10.0 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (4.15.0)\n",
"Requirement already satisfied: setuptools in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (75.2.0)\n",
"Requirement already satisfied: sympy>=1.13.3 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (1.13.3)\n",
"Requirement already satisfied: networkx in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (3.5)\n",
"Requirement already satisfied: jinja2 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (3.1.6)\n",
"Requirement already satisfied: fsspec in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (2025.3.0)\n",
"Requirement already satisfied: nvidia-cuda-nvrtc-cu12==12.6.77 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (12.6.77)\n",
"Requirement already satisfied: nvidia-cuda-runtime-cu12==12.6.77 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (12.6.77)\n",
"Requirement already satisfied: nvidia-cuda-cupti-cu12==12.6.80 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (12.6.80)\n",
"Requirement already satisfied: nvidia-cudnn-cu12==9.10.2.21 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (9.10.2.21)\n",
"Requirement already satisfied: nvidia-cublas-cu12==12.6.4.1 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (12.6.4.1)\n",
"Requirement already satisfied: nvidia-cufft-cu12==11.3.0.4 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (11.3.0.4)\n",
"Requirement already satisfied: nvidia-curand-cu12==10.3.7.77 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (10.3.7.77)\n",
"Requirement already satisfied: nvidia-cusolver-cu12==11.7.1.2 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (11.7.1.2)\n",
"Requirement already satisfied: nvidia-cusparse-cu12==12.5.4.2 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (12.5.4.2)\n",
"Requirement already satisfied: nvidia-cusparselt-cu12==0.7.1 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (0.7.1)\n",
"Requirement already satisfied: nvidia-nccl-cu12==2.27.3 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (2.27.3)\n",
"Requirement already satisfied: nvidia-nvtx-cu12==12.6.77 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (12.6.77)\n",
"Requirement already satisfied: nvidia-nvjitlink-cu12==12.6.85 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (12.6.85)\n",
"Requirement already satisfied: nvidia-cufile-cu12==1.11.1.6 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (1.11.1.6)\n",
"Requirement already satisfied: triton==3.4.0 in /usr/local/lib/python3.12/dist-packages (from torch>=1.6.0->torchsde) (3.4.0)\n",
"Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.12/dist-packages (from sympy>=1.13.3->torch>=1.6.0->torchsde) (1.3.0)\n",
"Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.12/dist-packages (from jinja2->torch>=1.6.0->torchsde) (3.0.2)\n",
"Downloading torchsde-0.2.6-py3-none-any.whl (61 kB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m61.2/61.2 kB\u001b[0m \u001b[31m3.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hDownloading trampoline-0.1.2-py3-none-any.whl (5.2 kB)\n",
"Installing collected packages: trampoline, torchsde\n",
"Successfully installed torchsde-0.2.6 trampoline-0.1.2\n",
"/content/ComfyUI/custom_nodes\n",
"-= Initial setup ComfyUI-Manager =-\n",
"Cloning into 'ComfyUI-Manager'...\n",
"remote: Enumerating objects: 24034, done.\u001b[K\n",
"remote: Counting objects: 100% (624/624), done.\u001b[K\n",
"remote: Compressing objects: 100% (320/320), done.\u001b[K\n",
"remote: Total 24034 (delta 477), reused 322 (delta 304), pack-reused 23410 (from 3)\u001b[K\n",
"Receiving objects: 100% (24034/24034), 69.49 MiB | 28.69 MiB/s, done.\n",
"Resolving deltas: 100% (17773/17773), done.\n",
"/content/ComfyUI/custom_nodes/ComfyUI-Manager\n",
"Already up to date.\n",
"/content/ComfyUI\n",
"-= Install custom nodes dependencies =-\n",
"Requirement already satisfied: GitPython in /usr/local/lib/python3.12/dist-packages (3.1.45)\n",
"Requirement already satisfied: gitdb<5,>=4.0.1 in /usr/local/lib/python3.12/dist-packages (from GitPython) (4.0.12)\n",
"Requirement already satisfied: smmap<6,>=3.0.1 in /usr/local/lib/python3.12/dist-packages (from gitdb<5,>=4.0.1->GitPython) (5.0.2)\n",
"\n",
"\u001b[1;33mWARN: The `COMFYUI_PATH` environment variable is not set. Assuming \u001b[0m\n",
"\u001b[1;33m`custom_nodes/ComfyUI-Manager/..\u001b[0m\u001b[1;33m/../\u001b[0m\u001b[1;33m` as the ComfyUI path.\u001b[0m\n",
"--------------------------------------------------------------------------------\n",
"--------------------\n",
"Restoring \u001b[1m[\u001b[0m\u001b[1;36m1\u001b[0m/\u001b[1;36m1\u001b[0m\u001b[1m]\u001b[0m: \u001b[35m/content/ComfyUI/custom_nodes/\u001b[0m\u001b[95mComfyUI-Manager\u001b[0m\n",
"Install: pip packages\n",
"\n",
"## ComfyUI-Manager: EXECUTE => \u001b[1m[\u001b[0m\u001b[32m'/usr/bin/python3'\u001b[0m, \u001b[32m'-m'\u001b[0m, \u001b[32m'pip'\u001b[0m, \u001b[32m'install'\u001b[0m, \n",
"\u001b[32m'GitPython'\u001b[0m\u001b[1m]\u001b[0m\n",
"Requirement already satisfied: GitPython in /usr/local/lib/python3.12/dist-packages (3.1.45)\n",
"Requirement already satisfied: gitdb<5,>=4.0.1 in /usr/local/lib/python3.12/dist-packages (from GitPython) (4.0.12)\n",
"Requirement already satisfied: smmap<6,>=3.0.1 in /usr/local/lib/python3.12/dist-packages (from gitdb<5,>=4.0.1->GitPython) (5.0.2)\n",
"\n",
"## ComfyUI-Manager: EXECUTE => \u001b[1m[\u001b[0m\u001b[32m'/usr/bin/python3'\u001b[0m, \u001b[32m'-m'\u001b[0m, \u001b[32m'pip'\u001b[0m, \u001b[32m'install'\u001b[0m, \n",
"\u001b[32m'PyGithub'\u001b[0m\u001b[1m]\u001b[0m\n",
"Collecting PyGithub\n",
" Downloading pygithub-2.8.1-py3-none-any.whl.metadata (3.9 kB)\n",
"Collecting pynacl>=1.4.0 (from PyGithub)\n",
" Downloading PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.metadata (8.6 kB)\n",
"Requirement already satisfied: requests>=2.14.0 in /usr/local/lib/python3.12/dist-packages (from PyGithub) (2.32.4)\n",
"Requirement already satisfied: pyjwt>=2.4.0 in /usr/local/lib/python3.12/dist-packages (from pyjwt[crypto]>=2.4.0->PyGithub) (2.10.1)\n",
"Requirement already satisfied: typing-extensions>=4.5.0 in /usr/local/lib/python3.12/dist-packages (from PyGithub) (4.15.0)\n",
"Requirement already satisfied: urllib3>=1.26.0 in /usr/local/lib/python3.12/dist-packages (from PyGithub) (2.5.0)\n",
"Requirement already satisfied: cryptography>=3.4.0 in /usr/local/lib/python3.12/dist-packages (from pyjwt[crypto]>=2.4.0->PyGithub) (43.0.3)\n",
"Requirement already satisfied: cffi>=1.4.1 in /usr/local/lib/python3.12/dist-packages (from pynacl>=1.4.0->PyGithub) (1.17.1)\n",
"Requirement already satisfied: charset_normalizer<4,>=2 in /usr/local/lib/python3.12/dist-packages (from requests>=2.14.0->PyGithub) (3.4.3)\n",
"Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.12/dist-packages (from requests>=2.14.0->PyGithub) (3.10)\n",
"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.12/dist-packages (from requests>=2.14.0->PyGithub) (2025.8.3)\n",
"Requirement already satisfied: pycparser in /usr/local/lib/python3.12/dist-packages (from cffi>=1.4.1->pynacl>=1.4.0->PyGithub) (2.22)\n",
"Downloading pygithub-2.8.1-py3-none-any.whl (432 kB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m432.7/432.7 kB\u001b[0m \u001b[31m11.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hDownloading PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (856 kB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m856.7/856.7 kB\u001b[0m \u001b[31m42.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hInstalling collected packages: pynacl, PyGithub\n",
"Successfully installed PyGithub-2.8.1 pynacl-1.5.0\n",
"\n",
"## ComfyUI-Manager: EXECUTE => \u001b[1m[\u001b[0m\u001b[32m'/usr/bin/python3'\u001b[0m, \u001b[32m'-m'\u001b[0m, \u001b[32m'pip'\u001b[0m, \u001b[32m'install'\u001b[0m, \n",
"\u001b[32m'matrix-nio'\u001b[0m\u001b[1m]\u001b[0m\n",
"Collecting matrix-nio\n",
" Downloading matrix_nio-0.25.2-py3-none-any.whl.metadata (6.3 kB)\n",
"Requirement already satisfied: aiohttp~=3.10 in /usr/local/lib/python3.12/dist-packages (from matrix-nio) (3.12.15)\n",
"Requirement already satisfied: aiofiles~=24.1 in /usr/local/lib/python3.12/dist-packages (from matrix-nio) (24.1.0)\n",
"Requirement already satisfied: h11~=0.14 in /usr/local/lib/python3.12/dist-packages (from matrix-nio) (0.16.0)\n",
"Requirement already satisfied: h2~=4.0 in /usr/local/lib/python3.12/dist-packages (from matrix-nio) (4.3.0)\n",
"Requirement already satisfied: jsonschema~=4.14 in /usr/local/lib/python3.12/dist-packages (from matrix-nio) (4.25.1)\n",
"Collecting unpaddedbase64~=2.1 (from matrix-nio)\n",
" Downloading unpaddedbase64-2.1.0-py3-none-any.whl.metadata (1.3 kB)\n",
"Collecting pycryptodome~=3.10 (from matrix-nio)\n",
" Downloading pycryptodome-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.4 kB)\n",
"Collecting aiohttp-socks~=0.8 (from matrix-nio)\n",
" Downloading aiohttp_socks-0.10.1-py3-none-any.whl.metadata (3.5 kB)\n",
"Requirement already satisfied: aiohappyeyeballs>=2.5.0 in /usr/local/lib/python3.12/dist-packages (from aiohttp~=3.10->matrix-nio) (2.6.1)\n",
"Requirement already satisfied: aiosignal>=1.4.0 in /usr/local/lib/python3.12/dist-packages (from aiohttp~=3.10->matrix-nio) (1.4.0)\n",
"Requirement already satisfied: attrs>=17.3.0 in /usr/local/lib/python3.12/dist-packages (from aiohttp~=3.10->matrix-nio) (25.3.0)\n",
"Requirement already satisfied: frozenlist>=1.1.1 in /usr/local/lib/python3.12/dist-packages (from aiohttp~=3.10->matrix-nio) (1.7.0)\n",
"Requirement already satisfied: multidict<7.0,>=4.5 in /usr/local/lib/python3.12/dist-packages (from aiohttp~=3.10->matrix-nio) (6.6.4)\n",
"Requirement already satisfied: propcache>=0.2.0 in /usr/local/lib/python3.12/dist-packages (from aiohttp~=3.10->matrix-nio) (0.3.2)\n",
"Requirement already satisfied: yarl<2.0,>=1.17.0 in /usr/local/lib/python3.12/dist-packages (from aiohttp~=3.10->matrix-nio) (1.20.1)\n",
"Collecting python-socks<3.0.0,>=2.4.3 (from python-socks[asyncio]<3.0.0,>=2.4.3->aiohttp-socks~=0.8->matrix-nio)\n",
" Downloading python_socks-2.7.2-py3-none-any.whl.metadata (8.0 kB)\n",
"Requirement already satisfied: hyperframe<7,>=6.1 in /usr/local/lib/python3.12/dist-packages (from h2~=4.0->matrix-nio) (6.1.0)\n",
"Requirement already satisfied: hpack<5,>=4.1 in /usr/local/lib/python3.12/dist-packages (from h2~=4.0->matrix-nio) (4.1.0)\n",
"Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /usr/local/lib/python3.12/dist-packages (from jsonschema~=4.14->matrix-nio) (2025.4.1)\n",
"Requirement already satisfied: referencing>=0.28.4 in /usr/local/lib/python3.12/dist-packages (from jsonschema~=4.14->matrix-nio) (0.36.2)\n",
"Requirement already satisfied: rpds-py>=0.7.1 in /usr/local/lib/python3.12/dist-packages (from jsonschema~=4.14->matrix-nio) (0.27.1)\n",
"Requirement already satisfied: typing-extensions>=4.2 in /usr/local/lib/python3.12/dist-packages (from aiosignal>=1.4.0->aiohttp~=3.10->matrix-nio) (4.15.0)\n",
"Requirement already satisfied: idna>=2.0 in /usr/local/lib/python3.12/dist-packages (from yarl<2.0,>=1.17.0->aiohttp~=3.10->matrix-nio) (3.10)\n",
"Downloading matrix_nio-0.25.2-py3-none-any.whl (181 kB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m182.0/182.0 kB\u001b[0m \u001b[31m5.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hDownloading aiohttp_socks-0.10.1-py3-none-any.whl (10 kB)\n",
"Downloading pycryptodome-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m2.3/2.3 MB\u001b[0m \u001b[31m54.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hDownloading unpaddedbase64-2.1.0-py3-none-any.whl (6.1 kB)\n",
"Downloading python_socks-2.7.2-py3-none-any.whl (55 kB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m55.0/55.0 kB\u001b[0m \u001b[31m5.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hInstalling collected packages: unpaddedbase64, python-socks, pycryptodome, aiohttp-socks, matrix-nio\n",
"Successfully installed aiohttp-socks-0.10.1 matrix-nio-0.25.2 pycryptodome-3.23.0 python-socks-2.7.2 unpaddedbase64-2.1.0\n",
"\u001b[1m[\u001b[0mComfyUI-Manager\u001b[1m]\u001b[0m skip black listed pip installation: \u001b[32m'transformers'\u001b[0m\n",
"\n",
"## ComfyUI-Manager: EXECUTE => \u001b[1m[\u001b[0m\u001b[32m'/usr/bin/python3'\u001b[0m, \u001b[32m'-m'\u001b[0m, \u001b[32m'pip'\u001b[0m, \u001b[32m'install'\u001b[0m, \n",
"\u001b[32m'huggingface-hub>0.20'\u001b[0m\u001b[1m]\u001b[0m\n",
"Requirement already satisfied: huggingface-hub>0.20 in /usr/local/lib/python3.12/dist-packages (0.34.4)\n",
"Requirement already satisfied: filelock in /usr/local/lib/python3.12/dist-packages (from huggingface-hub>0.20) (3.19.1)\n",
"Requirement already satisfied: fsspec>=2023.5.0 in /usr/local/lib/python3.12/dist-packages (from huggingface-hub>0.20) (2025.3.0)\n",
"Requirement already satisfied: packaging>=20.9 in /usr/local/lib/python3.12/dist-packages (from huggingface-hub>0.20) (25.0)\n",
"Requirement already satisfied: pyyaml>=5.1 in /usr/local/lib/python3.12/dist-packages (from huggingface-hub>0.20) (6.0.2)\n",
"Requirement already satisfied: requests in /usr/local/lib/python3.12/dist-packages (from huggingface-hub>0.20) (2.32.4)\n",
"Requirement already satisfied: tqdm>=4.42.1 in /usr/local/lib/python3.12/dist-packages (from huggingface-hub>0.20) (4.67.1)\n",
"Requirement already satisfied: typing-extensions>=3.7.4.3 in /usr/local/lib/python3.12/dist-packages (from huggingface-hub>0.20) (4.15.0)\n",
"Requirement already satisfied: hf-xet<2.0.0,>=1.1.3 in /usr/local/lib/python3.12/dist-packages (from huggingface-hub>0.20) (1.1.9)\n",
"Requirement already satisfied: charset_normalizer<4,>=2 in /usr/local/lib/python3.12/dist-packages (from requests->huggingface-hub>0.20) (3.4.3)\n",
"Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.12/dist-packages (from requests->huggingface-hub>0.20) (3.10)\n",
"Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.12/dist-packages (from requests->huggingface-hub>0.20) (2.5.0)\n",
"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.12/dist-packages (from requests->huggingface-hub>0.20) (2025.8.3)\n",
"\n",
"## ComfyUI-Manager: EXECUTE => \u001b[1m[\u001b[0m\u001b[32m'/usr/bin/python3'\u001b[0m, \u001b[32m'-m'\u001b[0m, \u001b[32m'pip'\u001b[0m, \u001b[32m'install'\u001b[0m, \n",
"\u001b[32m'typer'\u001b[0m\u001b[1m]\u001b[0m\n",
"Requirement already satisfied: typer in /usr/local/lib/python3.12/dist-packages (0.17.3)\n",
"Requirement already satisfied: click>=8.0.0 in /usr/local/lib/python3.12/dist-packages (from typer) (8.2.1)\n",
"Requirement already satisfied: typing-extensions>=3.7.4.3 in /usr/local/lib/python3.12/dist-packages (from typer) (4.15.0)\n",
"Requirement already satisfied: shellingham>=1.3.0 in /usr/local/lib/python3.12/dist-packages (from typer) (1.5.4)\n",
"Requirement already satisfied: rich>=10.11.0 in /usr/local/lib/python3.12/dist-packages (from typer) (13.9.4)\n",
"Requirement already satisfied: markdown-it-py>=2.2.0 in /usr/local/lib/python3.12/dist-packages (from rich>=10.11.0->typer) (4.0.0)\n",
"Requirement already satisfied: pygments<3.0.0,>=2.13.0 in /usr/local/lib/python3.12/dist-packages (from rich>=10.11.0->typer) (2.19.2)\n",
"Requirement already satisfied: mdurl~=0.1 in /usr/local/lib/python3.12/dist-packages (from markdown-it-py>=2.2.0->rich>=10.11.0->typer) (0.1.2)\n",
"\n",
"## ComfyUI-Manager: EXECUTE => \u001b[1m[\u001b[0m\u001b[32m'/usr/bin/python3'\u001b[0m, \u001b[32m'-m'\u001b[0m, \u001b[32m'pip'\u001b[0m, \u001b[32m'install'\u001b[0m, \n",
"\u001b[32m'rich'\u001b[0m\u001b[1m]\u001b[0m\n",
"Requirement already satisfied: rich in /usr/local/lib/python3.12/dist-packages (13.9.4)\n",
"Requirement already satisfied: markdown-it-py>=2.2.0 in /usr/local/lib/python3.12/dist-packages (from rich) (4.0.0)\n",
"Requirement already satisfied: pygments<3.0.0,>=2.13.0 in /usr/local/lib/python3.12/dist-packages (from rich) (2.19.2)\n",
"Requirement already satisfied: mdurl~=0.1 in /usr/local/lib/python3.12/dist-packages (from markdown-it-py>=2.2.0->rich) (0.1.2)\n",
"\n",
"## ComfyUI-Manager: EXECUTE => \u001b[1m[\u001b[0m\u001b[32m'/usr/bin/python3'\u001b[0m, \u001b[32m'-m'\u001b[0m, \u001b[32m'pip'\u001b[0m, \u001b[32m'install'\u001b[0m, \n",
"\u001b[32m'typing-extensions'\u001b[0m\u001b[1m]\u001b[0m\n",
"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.12/dist-packages (4.15.0)\n",
"\n",
"## ComfyUI-Manager: EXECUTE => \u001b[1m[\u001b[0m\u001b[32m'/usr/bin/python3'\u001b[0m, \u001b[32m'-m'\u001b[0m, \u001b[32m'pip'\u001b[0m, \u001b[32m'install'\u001b[0m, \n",
"\u001b[32m'toml'\u001b[0m\u001b[1m]\u001b[0m\n",
"Requirement already satisfied: toml in /usr/local/lib/python3.12/dist-packages (0.10.2)\n",
"\n",
"## ComfyUI-Manager: EXECUTE => \u001b[1m[\u001b[0m\u001b[32m'/usr/bin/python3'\u001b[0m, \u001b[32m'-m'\u001b[0m, \u001b[32m'pip'\u001b[0m, \u001b[32m'install'\u001b[0m, \n",
"\u001b[32m'uv'\u001b[0m\u001b[1m]\u001b[0m\n",
"Collecting uv\n",
" Downloading uv-0.8.15-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (11 kB)\n",
"Downloading uv-0.8.15-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (21.0 MB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m21.0/21.0 MB\u001b[0m \u001b[31m105.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hInstalling collected packages: uv\n",
"Successfully installed uv-0.8.15\n",
"\n",
"## ComfyUI-Manager: EXECUTE => \u001b[1m[\u001b[0m\u001b[32m'/usr/bin/python3'\u001b[0m, \u001b[32m'-m'\u001b[0m, \u001b[32m'pip'\u001b[0m, \u001b[32m'install'\u001b[0m, \n",
"\u001b[32m'chardet'\u001b[0m\u001b[1m]\u001b[0m\n",
"Requirement already satisfied: chardet in /usr/local/lib/python3.12/dist-packages (5.2.0)\n"
]
}
],
"source": [
"# #@title Environment Setup\n",
"\n",
"from pathlib import Path\n",
"\n",
"OPTIONS = {}\n",
"\n",
"USE_GOOGLE_DRIVE = False #@param {type:\"boolean\"}\n",
"UPDATE_COMFY_UI = True #@param {type:\"boolean\"}\n",
"USE_COMFYUI_MANAGER = True #@param {type:\"boolean\"}\n",
"INSTALL_CUSTOM_NODES_DEPENDENCIES = True #@param {type:\"boolean\"}\n",
"OPTIONS['USE_GOOGLE_DRIVE'] = USE_GOOGLE_DRIVE\n",
"OPTIONS['UPDATE_COMFY_UI'] = UPDATE_COMFY_UI\n",
"OPTIONS['USE_COMFYUI_MANAGER'] = USE_COMFYUI_MANAGER\n",
"OPTIONS['INSTALL_CUSTOM_NODES_DEPENDENCIES'] = INSTALL_CUSTOM_NODES_DEPENDENCIES\n",
"\n",
"current_dir = !pwd\n",
"WORKSPACE = f\"{current_dir[0]}/ComfyUI\"\n",
"\n",
"if OPTIONS['USE_GOOGLE_DRIVE']:\n",
" !echo \"Mounting Google Drive...\"\n",
" %cd /\n",
"\n",
" from google.colab import drive\n",
" drive.mount('/content/drive')\n",
"\n",
" WORKSPACE = \"/content/drive/MyDrive/ComfyUI\"\n",
" %cd /content/drive/MyDrive\n",
"\n",
"![ ! -d $WORKSPACE ] && echo -= Initial setup ComfyUI =- && git clone https://github.com/comfyanonymous/ComfyUI\n",
"%cd $WORKSPACE\n",
"\n",
"if OPTIONS['UPDATE_COMFY_UI']:\n",
" !echo -= Updating ComfyUI =-\n",
"\n",
" # Correction of the issue of permissions being deleted on Google Drive.\n",
" ![ -f \".ci/nightly/update_windows/update_comfyui_and_python_dependencies.bat\" ] && chmod 755 .ci/nightly/update_windows/update_comfyui_and_python_dependencies.bat\n",
" ![ -f \".ci/nightly/windows_base_files/run_nvidia_gpu.bat\" ] && chmod 755 .ci/nightly/windows_base_files/run_nvidia_gpu.bat\n",
" ![ -f \".ci/update_windows/update_comfyui_and_python_dependencies.bat\" ] && chmod 755 .ci/update_windows/update_comfyui_and_python_dependencies.bat\n",
" ![ -f \".ci/update_windows_cu118/update_comfyui_and_python_dependencies.bat\" ] && chmod 755 .ci/update_windows_cu118/update_comfyui_and_python_dependencies.bat\n",
" ![ -f \".ci/update_windows/update.py\" ] && chmod 755 .ci/update_windows/update.py\n",
" ![ -f \".ci/update_windows/update_comfyui.bat\" ] && chmod 755 .ci/update_windows/update_comfyui.bat\n",
" ![ -f \".ci/update_windows/README_VERY_IMPORTANT.txt\" ] && chmod 755 .ci/update_windows/README_VERY_IMPORTANT.txt\n",
" ![ -f \".ci/update_windows/run_cpu.bat\" ] && chmod 755 .ci/update_windows/run_cpu.bat\n",
" ![ -f \".ci/update_windows/run_nvidia_gpu.bat\" ] && chmod 755 .ci/update_windows/run_nvidia_gpu.bat\n",
"\n",
" !git pull\n",
"\n",
"!echo -= Install dependencies =-\n",
"!pip3 install accelerate\n",
"!pip3 install einops transformers>=4.28.1 safetensors>=0.4.2 aiohttp pyyaml Pillow scipy tqdm psutil tokenizers>=0.13.3\n",
"!pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121\n",
"!pip3 install torchsde\n",
"!pip3 install kornia>=0.7.1 spandrel soundfile sentencepiece\n",
"\n",
"if OPTIONS['USE_COMFYUI_MANAGER']:\n",
" %cd custom_nodes\n",
"\n",
" # Correction of the issue of permissions being deleted on Google Drive.\n",
" ![ -f \"ComfyUI-Manager/check.sh\" ] && chmod 755 ComfyUI-Manager/check.sh\n",
" ![ -f \"ComfyUI-Manager/scan.sh\" ] && chmod 755 ComfyUI-Manager/scan.sh\n",
" ![ -f \"ComfyUI-Manager/node_db/dev/scan.sh\" ] && chmod 755 ComfyUI-Manager/node_db/dev/scan.sh\n",
" ![ -f \"ComfyUI-Manager/node_db/tutorial/scan.sh\" ] && chmod 755 ComfyUI-Manager/node_db/tutorial/scan.sh\n",
" ![ -f \"ComfyUI-Manager/scripts/install-comfyui-venv-linux.sh\" ] && chmod 755 ComfyUI-Manager/scripts/install-comfyui-venv-linux.sh\n",
" ![ -f \"ComfyUI-Manager/scripts/install-comfyui-venv-win.bat\" ] && chmod 755 ComfyUI-Manager/scripts/install-comfyui-venv-win.bat\n",
"\n",
" ![ ! -d ComfyUI-Manager ] && echo -= Initial setup ComfyUI-Manager =- && git clone https://github.com/ltdrdata/ComfyUI-Manager\n",
" %cd ComfyUI-Manager\n",
" !git pull\n",
"\n",
"%cd $WORKSPACE\n",
"\n",
"if OPTIONS['INSTALL_CUSTOM_NODES_DEPENDENCIES']:\n",
" !echo -= Install custom nodes dependencies =-\n",
" !pip install GitPython\n",
" !python custom_nodes/ComfyUI-Manager/cm-cli.py restore-dependencies\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "cccccccccc"
},
"source": [
"Download some models/checkpoints/vae or custom comfyui nodes (uncomment the commands for the ones you want)"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"id": "dddddddddd",
"outputId": "5a793022-034e-40dc-d672-cf252f9ad18c",
"colab": {
"base_uri": "https://localhost:8080/"
}
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"/content/ComfyUI\n",
"--2025-09-07 00:18:37-- https://civitai.com/api/download/models/361041?type=Model&format=SafeTensor\n",
"Resolving civitai.com (civitai.com)... 104.20.38.219, 172.66.152.186, 2606:4700:10::6814:26db, ...\n",
"Connecting to civitai.com (civitai.com)|104.20.38.219|:443... connected.\n",
"HTTP request sent, awaiting response... 307 Temporary Redirect\n",
"Location: https://civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/model/3705750/midjourneyanime.c2RH.safetensors?X-Amz-Expires=86400&response-content-disposition=attachment%3B%20filename%3D%22midjourneyanime.safetensors%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=e01358d793ad6966166af8b3064953ad/20250907/us-east-1/s3/aws4_request&X-Amz-Date=20250907T001837Z&X-Amz-SignedHeaders=host&X-Amz-Signature=ce637d9215c0f1315b29dbbb5a307d0243421370fa390009d6fb382847d39e50 [following]\n",
"--2025-09-07 00:18:38-- https://civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/model/3705750/midjourneyanime.c2RH.safetensors?X-Amz-Expires=86400&response-content-disposition=attachment%3B%20filename%3D%22midjourneyanime.safetensors%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=e01358d793ad6966166af8b3064953ad/20250907/us-east-1/s3/aws4_request&X-Amz-Date=20250907T001837Z&X-Amz-SignedHeaders=host&X-Amz-Signature=ce637d9215c0f1315b29dbbb5a307d0243421370fa390009d6fb382847d39e50\n",
"Resolving civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com (civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com)... 162.159.141.50, 172.66.1.46, 2a06:98c1:58::12e, ...\n",
"Connecting to civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com (civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com)|162.159.141.50|:443... connected.\n",
"HTTP request sent, awaiting response... 200 OK\n",
"Length: 151115736 (144M)\n",
"Saving to: ‘./models/checkpoints/midjourneyanime.safetensors’\n",
"\n",
"./models/checkpoint 100%[===================>] 144.11M 41.2MB/s in 3.5s \n",
"\n",
"2025-09-07 00:18:41 (41.0 MB/s) - ‘./models/checkpoints/midjourneyanime.safetensors’ saved [151115736/151115736]\n",
"\n",
"--2025-09-07 00:18:41-- https://civitai.com/api/download/models/123021?type=Model&format=SafeTensor&size=full&fp=fp16\n",
"Resolving civitai.com (civitai.com)... 104.20.38.219, 172.66.152.186, 2606:4700:10::6814:26db, ...\n",
"Connecting to civitai.com (civitai.com)|104.20.38.219|:443... connected.\n",
"HTTP request sent, awaiting response... 307 Temporary Redirect\n",
"Location: https://civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/954677/model/animeanythingV10.Uh5P.safetensors?X-Amz-Expires=86400&response-content-disposition=attachment%3B%20filename%3D%22animeanything_v10.safetensors%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=e01358d793ad6966166af8b3064953ad/20250907/us-east-1/s3/aws4_request&X-Amz-Date=20250907T001847Z&X-Amz-SignedHeaders=host&X-Amz-Signature=ac6948b8dbf50b14268322b369d8fc282c3abfd7f02ee74f381751887eabc3e6 [following]\n",
"--2025-09-07 00:18:47-- https://civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/954677/model/animeanythingV10.Uh5P.safetensors?X-Amz-Expires=86400&response-content-disposition=attachment%3B%20filename%3D%22animeanything_v10.safetensors%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=e01358d793ad6966166af8b3064953ad/20250907/us-east-1/s3/aws4_request&X-Amz-Date=20250907T001847Z&X-Amz-SignedHeaders=host&X-Amz-Signature=ac6948b8dbf50b14268322b369d8fc282c3abfd7f02ee74f381751887eabc3e6\n",
"Resolving civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com (civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com)... 162.159.141.50, 172.66.1.46, 2a06:98c1:58::12e, ...\n",
"Connecting to civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com (civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com)|162.159.141.50|:443... connected.\n",
"HTTP request sent, awaiting response... 200 OK\n",
"Length: 4265098448 (4.0G) [application/octet-stream]\n",
"Saving to: ‘./models/checkpoints/animeanything_v10.safetensors’\n",
"\n",
"./models/checkpoint 100%[===================>] 3.97G 45.9MB/s in 96s \n",
"\n",
"2025-09-07 00:20:23 (42.2 MB/s) - ‘./models/checkpoints/animeanything_v10.safetensors’ saved [4265098448/4265098448]\n",
"\n",
"--2025-09-07 00:20:23-- https://civitai.com/api/download/models/93295?type=Model&format=SafeTensor&size=pruned&fp=fp16\n",
"Resolving civitai.com (civitai.com)... 104.20.38.219, 172.66.152.186, 2606:4700:10::6814:26db, ...\n",
"Connecting to civitai.com (civitai.com)|104.20.38.219|:443... connected.\n",
"HTTP request sent, awaiting response... 307 Temporary Redirect\n",
"Location: https://civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/205600/model/animekawa.MpyM.safetensors?X-Amz-Expires=86400&response-content-disposition=attachment%3B%20filename%3D%22animekawa_v10.safetensors%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=e01358d793ad6966166af8b3064953ad/20250907/us-east-1/s3/aws4_request&X-Amz-Date=20250907T002024Z&X-Amz-SignedHeaders=host&X-Amz-Signature=3a53de47d33a0b24146e848b988bfc9e9c2c9466bfa36ff592f176033370f708 [following]\n",
"--2025-09-07 00:20:24-- https://civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/205600/model/animekawa.MpyM.safetensors?X-Amz-Expires=86400&response-content-disposition=attachment%3B%20filename%3D%22animekawa_v10.safetensors%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=e01358d793ad6966166af8b3064953ad/20250907/us-east-1/s3/aws4_request&X-Amz-Date=20250907T002024Z&X-Amz-SignedHeaders=host&X-Amz-Signature=3a53de47d33a0b24146e848b988bfc9e9c2c9466bfa36ff592f176033370f708\n",
"Resolving civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com (civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com)... 172.66.1.46, 162.159.141.50, 2606:4700:7::12e, ...\n",
"Connecting to civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com (civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com)|172.66.1.46|:443... connected.\n",
"HTTP request sent, awaiting response... 200 OK\n",
"Length: 2132625888 (2.0G) [application/octet-stream]\n",
"Saving to: ‘./models/checkpoints/animekawa_v10.safetensors’\n",
"\n",
"./models/checkpoint 100%[===================>] 1.99G 42.1MB/s in 45s \n",
"\n",
"2025-09-07 00:21:09 (45.2 MB/s) - ‘./models/checkpoints/animekawa_v10.safetensors’ saved [2132625888/2132625888]\n",
"\n",
"--2025-09-07 00:21:09-- https://civitai.com/api/download/models/2015411?type=Model&format=SafeTensor&size=pruned&fp=fp16\n",
"Resolving civitai.com (civitai.com)... 172.66.152.186, 104.20.38.219, 2606:4700:10::6814:26db, ...\n",
"Connecting to civitai.com (civitai.com)|172.66.152.186|:443... connected.\n",
"HTTP request sent, awaiting response... 307 Temporary Redirect\n",
"Location: https://civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/model/550395/animeartflowV14Fp16.psXa.safetensors?X-Amz-Expires=86400&response-content-disposition=attachment%3B%20filename%3D%22animeArtflow_v14.safetensors%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=e01358d793ad6966166af8b3064953ad/20250907/us-east-1/s3/aws4_request&X-Amz-Date=20250907T002109Z&X-Amz-SignedHeaders=host&X-Amz-Signature=e33423c3e5aed08e74b81b942ab45dddbc73e7d0ace54b042a47acc1f20f1ee8 [following]\n",
"--2025-09-07 00:21:09-- https://civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/model/550395/animeartflowV14Fp16.psXa.safetensors?X-Amz-Expires=86400&response-content-disposition=attachment%3B%20filename%3D%22animeArtflow_v14.safetensors%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=e01358d793ad6966166af8b3064953ad/20250907/us-east-1/s3/aws4_request&X-Amz-Date=20250907T002109Z&X-Amz-SignedHeaders=host&X-Amz-Signature=e33423c3e5aed08e74b81b942ab45dddbc73e7d0ace54b042a47acc1f20f1ee8\n",
"Resolving civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com (civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com)... 172.66.1.46, 162.159.141.50, 2606:4700:7::12e, ...\n",
"Connecting to civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com (civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com)|172.66.1.46|:443... connected.\n",
"HTTP request sent, awaiting response... 200 OK\n",
"Length: 6938041004 (6.5G)\n",
"Saving to: ‘./models/checkpoints/animeArtflow_v14.safetensors’\n",
"\n",
"./models/checkpoint 100%[===================>] 6.46G 52.4MB/s in 2m 25s \n",
"\n",
"2025-09-07 00:23:34 (45.8 MB/s) - ‘./models/checkpoints/animeArtflow_v14.safetensors’ saved [6938041004/6938041004]\n",
"\n",
"--2025-09-07 00:23:34-- https://civitai.com/api/download/models/28100?type=Model&format=SafeTensor&size=full&fp=fp16\n",
"Resolving civitai.com (civitai.com)... 104.20.38.219, 172.66.152.186, 2606:4700:10::6814:26db, ...\n",
"Connecting to civitai.com (civitai.com)|104.20.38.219|:443... connected.\n",
"HTTP request sent, awaiting response... 307 Temporary Redirect\n",
"Location: https://civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/53515/model/animepasteldreamSoft.lTTK.safetensors?X-Amz-Expires=86400&response-content-disposition=attachment%3B%20filename%3D%22animePastelDream_softBakedVae.safetensors%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=e01358d793ad6966166af8b3064953ad/20250907/us-east-1/s3/aws4_request&X-Amz-Date=20250907T002334Z&X-Amz-SignedHeaders=host&X-Amz-Signature=79634b70c66db41e3a0e54facc9d0168fd38afae75cb71e4859fbac167635b08 [following]\n",
"--2025-09-07 00:23:34-- https://civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/53515/model/animepasteldreamSoft.lTTK.safetensors?X-Amz-Expires=86400&response-content-disposition=attachment%3B%20filename%3D%22animePastelDream_softBakedVae.safetensors%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=e01358d793ad6966166af8b3064953ad/20250907/us-east-1/s3/aws4_request&X-Amz-Date=20250907T002334Z&X-Amz-SignedHeaders=host&X-Amz-Signature=79634b70c66db41e3a0e54facc9d0168fd38afae75cb71e4859fbac167635b08\n",
"Resolving civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com (civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com)... 172.66.1.46, 162.159.141.50, 2a06:98c1:58::12e, ...\n",
"Connecting to civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com (civitai-delivery-worker-prod.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com)|172.66.1.46|:443... connected.\n",
"HTTP request sent, awaiting response... 200 OK\n",
"Length: 7391880907 (6.9G) [application/octet-stream]\n",
"Saving to: ‘./models/checkpoints/pasteldream.safetensors’\n",
"\n",
"./models/checkpoint 100%[===================>] 6.88G 43.6MB/s in 2m 37s \n",
"\n",
"2025-09-07 00:26:11 (44.9 MB/s) - ‘./models/checkpoints/pasteldream.safetensors’ saved [7391880907/7391880907]\n",
"\n",
"Cloning into 'temp_lora'...\n",
"remote: Enumerating objects: 3081, done.\u001b[K\n",
"remote: Counting objects: 100% (3081/3081), done.\u001b[K\n",
"remote: Compressing objects: 100% (3069/3069), done.\u001b[K\n",
"remote: Total 3081 (delta 7), reused 2759 (delta 6), pack-reused 0 (from 0)\u001b[K\n",
"Receiving objects: 100% (3081/3081), 672.11 MiB | 25.34 MiB/s, done.\n",
"Resolving deltas: 100% (7/7), done.\n",
"Updating files: 100% (3003/3003), done.\n",
"Filtering content: 100% (1189/1189), 24.22 GiB | 54.50 MiB/s, done.\n",
"Encountered 46 file(s) that should have been pointers, but weren't:\n",
"\tanimecat/thumb.webp\n",
"\tblackeyes/thumb.webp\n",
"\tblur/thumb.webp\n",
"\tcateyemouth/thumb.webp\n",
"\tchestnutmouth/thumb.webp\n",
"\tcirclemouth/thumb.webp\n",
"\tclosedmouth/thumb.webp\n",
"\tcomiceye/thumb.webp\n",
"\tconcentratedlines/thumb.webp\n",
"\tdark_gloweye/thumb.webp\n",
"\tdoyagao/thumb.webp\n",
"\teyecolle/thumb.webp\n",
"\thetechro/thumb.webp\n",
"\tinv_v_eyebrows/thumb.webp\n",
"\tlumi/thumb.webp\n",
"\tmake25d/thumb.webp\n",
"\tmekakure/thumb.webp\n",
"\tnikkori/thumb.webp\n",
"\tpaleface/thumb.webp\n",
"\tpaperchara/thumb.webp\n",
"\tsaturation/thumb.webp\n",
"\tsdxl/anti25d/thumb.webp\n",
"\tsdxl/eyecollexl/thumb.webp\n",
"\tsdxl/gekioko/thumb.webp\n",
"\tsdxl/inv_v_eyebrows/thumb.webp\n",
"\tsdxl/make25d/thumb.webp\n",
"\tsdxl/mouthcollection/thumb.webp\n",
"\tsdxl/paleface/thumb.webp\n",
"\tsdxl/sleepy/thumb.webp\n",
"\tsdxl/surprised/thumb.webp\n",
"\tsdxl/talkmouth/thumb.webp\n",
"\tsdxl/widemouth/thumb.webp\n",
"\tsdxl/yudedako/thumb.webp\n",
"\tsensualface/thumb.webp\n",
"\tsleepy/thumb.webp\n",
"\tsmirking/thumb.webp\n",
"\tsmugface/thumb.webp\n",
"\tsmugmouth/thumb.webp\n",
"\tstarhearteyes/thumb.webp\n",
"\tsurprised/thumb.webp\n",
"\tthinkingface/thumb.webp\n",
"\ttone/thumb.webp\n",
"\twavymouth/thumb.webp\n",
"\twhiteeyelash/thumb.webp\n",
"\twhiteeyes/thumb.webp\n",
"\tworriedeyes/thumb.webp\n",
"/content/ComfyUI/temp_lora\n",
"/content/ComfyUI\n"
]
}
],
"source": [
"# Checkpoints\n",
"%cd /content/ComfyUI\n",
"# checkpoint\n",
"#Midjourney Style Anime Stable Diffusion\n",
"!wget -c \"https://civitai.com/api/download/models/361041?type=Model&format=SafeTensor\" -O ./models/checkpoints/midjourneyanime.safetensors\n",
"#AnimeAnything | 日式插画\n",
"!wget -c \"https://civitai.com/api/download/models/123021?type=Model&format=SafeTensor&size=full&fp=fp16\" -O ./models/checkpoints/animeanything_v10.safetensors\n",
"#AnimeKawa\n",
"!wget -c \"https://civitai.com/api/download/models/93295?type=Model&format=SafeTensor&size=pruned&fp=fp16\" -O ./models/checkpoints/animekawa_v10.safetensors\n",
"#Anime ArtFlow Illustrious-XL\n",
"!wget -c \"https://civitai.com/api/download/models/2015411?type=Model&format=SafeTensor&size=pruned&fp=fp16\" -O ./models/checkpoints/animeArtflow_v14.safetensors\n",
"#Anime Pastel Dream\n",
"!wget -c \"https://civitai.com/api/download/models/28100?type=Model&format=SafeTensor&size=full&fp=fp16\" -O ./models/checkpoints/pasteldream.safetensors\n",
"# ↓ これは認証必須のため直接wget不可\n",
"#[FLUX] 1984 - Anime Style feat. IllustriousXL\n",
"# !wget -c \"https://civitai.com/api/download/models/2041872?type=Model&format=SafeTensor&size=full&fp=fp8\" -O ./models/checkpoints/model_fp8.safetensors\n",
"\n",
"# lora\n",
"!mkdir -p ./models/loras/animeface\n",
"!git clone --depth 1 https://huggingface.co/JujoHotaru/lora temp_lora\n",
"%cd temp_lora\n",
"!git lfs pull --include=\"*.safetensors\"\n",
"%cd ..\n",
"!cp temp_lora/*.safetensors ./models/loras/animeface/ || echo \"No safetensors in root\"\n",
"!rm -rf temp_lora\n",
"\n",
"\n",
"\n",
"\n",
"### SDXL\n",
"### I recommend these workflow examples: https://comfyanonymous.github.io/ComfyUI_examples/sdxl/\n",
"\n",
"#!wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0.safetensors -P ./models/checkpoints/\n",
"#!wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/resolve/main/sd_xl_refiner_1.0.safetensors -P ./models/checkpoints/\n",
"\n",
"# SDXL ReVision\n",
"#!wget -c https://huggingface.co/comfyanonymous/clip_vision_g/resolve/main/clip_vision_g.safetensors -P ./models/clip_vision/\n",
"\n",
"# SD1.5\n",
"#!wget -c https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.ckpt -P ./models/checkpoints/\n",
"\n",
"# SD2\n",
"#!wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1-base/resolve/main/v2-1_512-ema-pruned.safetensors -P ./models/checkpoints/\n",
"#!wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1/resolve/main/v2-1_768-ema-pruned.safetensors -P ./models/checkpoints/\n",
"\n",
"# Some SD1.5 anime style\n",
"#!wget -c https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix2/AbyssOrangeMix2_hard.safetensors -P ./models/checkpoints/\n",
"#!wget -c https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix3/AOM3A1_orangemixs.safetensors -P ./models/checkpoints/\n",
"#!wget -c https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix3/AOM3A3_orangemixs.safetensors -P ./models/checkpoints/\n",
"#!wget -c https://huggingface.co/Linaqruf/anything-v3.0/resolve/main/anything-v3-fp16-pruned.safetensors -P ./models/checkpoints/\n",
"\n",
"# Waifu Diffusion 1.5 (anime style SD2.x 768-v)\n",
"#!wget -c https://huggingface.co/waifu-diffusion/wd-1-5-beta3/resolve/main/wd-illusion-fp16.safetensors -P ./models/checkpoints/\n",
"\n",
"\n",
"# unCLIP models\n",
"#!wget -c https://huggingface.co/comfyanonymous/illuminatiDiffusionV1_v11_unCLIP/resolve/main/illuminatiDiffusionV1_v11-unclip-h-fp16.safetensors -P ./models/checkpoints/\n",
"#!wget -c https://huggingface.co/comfyanonymous/wd-1.5-beta2_unCLIP/resolve/main/wd-1-5-beta2-aesthetic-unclip-h-fp16.safetensors -P ./models/checkpoints/\n",
"\n",
"\n",
"# VAE\n",
"#!wget -c https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.safetensors -P ./models/vae/\n",
"#!wget -c https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/VAEs/orangemix.vae.pt -P ./models/vae/\n",
"#!wget -c https://huggingface.co/hakurei/waifu-diffusion-v1-4/resolve/main/vae/kl-f8-anime2.ckpt -P ./models/vae/\n",
"\n",
"\n",
"# Loras\n",
"#!wget -c https://civitai.com/api/download/models/10350 -O ./models/loras/theovercomer8sContrastFix_sd21768.safetensors #theovercomer8sContrastFix SD2.x 768-v\n",
"#!wget -c https://civitai.com/api/download/models/10638 -O ./models/loras/theovercomer8sContrastFix_sd15.safetensors #theovercomer8sContrastFix SD1.x\n",
"#!wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_offset_example-lora_1.0.safetensors -P ./models/loras/ #SDXL offset noise lora\n",
"\n",
"\n",
"# T2I-Adapter\n",
"#!wget -c https://huggingface.co/TencentARC/T2I-Adapter/resolve/main/models/t2iadapter_depth_sd14v1.pth -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/TencentARC/T2I-Adapter/resolve/main/models/t2iadapter_seg_sd14v1.pth -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/TencentARC/T2I-Adapter/resolve/main/models/t2iadapter_sketch_sd14v1.pth -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/TencentARC/T2I-Adapter/resolve/main/models/t2iadapter_keypose_sd14v1.pth -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/TencentARC/T2I-Adapter/resolve/main/models/t2iadapter_openpose_sd14v1.pth -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/TencentARC/T2I-Adapter/resolve/main/models/t2iadapter_color_sd14v1.pth -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/TencentARC/T2I-Adapter/resolve/main/models/t2iadapter_canny_sd14v1.pth -P ./models/controlnet/\n",
"\n",
"# T2I Styles Model\n",
"#!wget -c https://huggingface.co/TencentARC/T2I-Adapter/resolve/main/models/t2iadapter_style_sd14v1.pth -P ./models/style_models/\n",
"\n",
"# CLIPVision model (needed for styles model)\n",
"#!wget -c https://huggingface.co/openai/clip-vit-large-patch14/resolve/main/pytorch_model.bin -O ./models/clip_vision/clip_vit14.bin\n",
"\n",
"\n",
"# ControlNet\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_ip2p_fp16.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_shuffle_fp16.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_canny_fp16.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11f1p_sd15_depth_fp16.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_inpaint_fp16.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_lineart_fp16.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_mlsd_fp16.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_normalbae_fp16.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_openpose_fp16.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_scribble_fp16.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_seg_fp16.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_softedge_fp16.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15s2_lineart_anime_fp16.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11u_sd15_tile_fp16.safetensors -P ./models/controlnet/\n",
"\n",
"# ControlNet SDXL\n",
"#!wget -c https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-canny-rank256.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-depth-rank256.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-recolor-rank256.safetensors -P ./models/controlnet/\n",
"#!wget -c https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-sketch-rank256.safetensors -P ./models/controlnet/\n",
"\n",
"# Controlnet Preprocessor nodes by Fannovel16\n",
"#!cd custom_nodes && git clone https://github.com/Fannovel16/comfy_controlnet_preprocessors; cd comfy_controlnet_preprocessors && python install.py\n",
"\n",
"\n",
"# GLIGEN\n",
"#!wget -c https://huggingface.co/comfyanonymous/GLIGEN_pruned_safetensors/resolve/main/gligen_sd14_textbox_pruned_fp16.safetensors -P ./models/gligen/\n",
"\n",
"\n",
"# ESRGAN upscale model\n",
"#!wget -c https://github.com/xinntao/Real-ESRGAN/releases/download/v0.1.0/RealESRGAN_x4plus.pth -P ./models/upscale_models/\n",
"#!wget -c https://huggingface.co/sberbank-ai/Real-ESRGAN/resolve/main/RealESRGAN_x2.pth -P ./models/upscale_models/\n",
"#!wget -c https://huggingface.co/sberbank-ai/Real-ESRGAN/resolve/main/RealESRGAN_x4.pth -P ./models/upscale_models/\n",
"\n",
"\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "kkkkkkkkkkkkkkk"
},
"source": [
"### Run ComfyUI with cloudflared (Recommended Way)\n",
"\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "jjjjjjjjjjjjjj",
"outputId": "7b8d7275-6bd4-4601-b8bd-a0969230198a",
"colab": {
"base_uri": "https://localhost:8080/"
}
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"--2025-09-07 00:42:28-- https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb\n",
"Resolving github.com (github.com)... 140.82.116.3\n",
"Connecting to github.com (github.com)|140.82.116.3|:443... connected.\n",
"HTTP request sent, awaiting response... 302 Found\n",
"Location: https://github.com/cloudflare/cloudflared/releases/download/2025.8.1/cloudflared-linux-amd64.deb [following]\n",
"--2025-09-07 00:42:28-- https://github.com/cloudflare/cloudflared/releases/download/2025.8.1/cloudflared-linux-amd64.deb\n",
"Reusing existing connection to github.com:443.\n",
"HTTP request sent, awaiting response... 302 Found\n",
"Location: https://release-assets.githubusercontent.com/github-production-release-asset/106867604/92cb7978-e346-4125-ab19-54eebccb08b0?sp=r&sv=2018-11-09&sr=b&spr=https&se=2025-09-07T01%3A32%3A38Z&rscd=attachment%3B+filename%3Dcloudflared-linux-amd64.deb&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2025-09-07T00%3A32%3A12Z&ske=2025-09-07T01%3A32%3A38Z&sks=b&skv=2018-11-09&sig=%2BOfDythv153k0kVFyYNs4r4vFqj13Lr5m%2BjHxzLXMiY%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc1NzIwNjA0OSwibmJmIjoxNzU3MjA1NzQ5LCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.Js7GN-4S7MgawpxE10AzgfqO7rgzOSQzCEbgQUPv8Js&response-content-disposition=attachment%3B%20filename%3Dcloudflared-linux-amd64.deb&response-content-type=application%2Foctet-stream [following]\n",
"--2025-09-07 00:42:29-- https://release-assets.githubusercontent.com/github-production-release-asset/106867604/92cb7978-e346-4125-ab19-54eebccb08b0?sp=r&sv=2018-11-09&sr=b&spr=https&se=2025-09-07T01%3A32%3A38Z&rscd=attachment%3B+filename%3Dcloudflared-linux-amd64.deb&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2025-09-07T00%3A32%3A12Z&ske=2025-09-07T01%3A32%3A38Z&sks=b&skv=2018-11-09&sig=%2BOfDythv153k0kVFyYNs4r4vFqj13Lr5m%2BjHxzLXMiY%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc1NzIwNjA0OSwibmJmIjoxNzU3MjA1NzQ5LCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.Js7GN-4S7MgawpxE10AzgfqO7rgzOSQzCEbgQUPv8Js&response-content-disposition=attachment%3B%20filename%3Dcloudflared-linux-amd64.deb&response-content-type=application%2Foctet-stream\n",
"Resolving release-assets.githubusercontent.com (release-assets.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ...\n",
"Connecting to release-assets.githubusercontent.com (release-assets.githubusercontent.com)|185.199.108.133|:443... connected.\n",
"HTTP request sent, awaiting response... 200 OK\n",
"Length: 20178834 (19M) [application/octet-stream]\n",
"Saving to: ‘/root/cloudflared-linux-amd64.deb.1’\n",
"\n",
"cloudflared-linux-a 100%[===================>] 19.24M 126MB/s in 0.2s \n",
"\n",
"2025-09-07 00:42:29 (126 MB/s) - ‘/root/cloudflared-linux-amd64.deb.1’ saved [20178834/20178834]\n",
"\n",
"(Reading database ... 126378 files and directories currently installed.)\n",
"Preparing to unpack .../cloudflared-linux-amd64.deb ...\n",
"Unpacking cloudflared (2025.8.1) over (2025.8.1) ...\n",
"Setting up cloudflared (2025.8.1) ...\n",
"Processing triggers for man-db (2.10.2-1) ...\n",
"Requirement already satisfied: av in /usr/local/lib/python3.12/dist-packages (15.1.0)\n",
"--2025-09-07 00:42:36-- https://huggingface.co/StableDiffusionVN/Prunedcontrolnet/resolve/2425b627f0cb73c148a827b1ca09796eb2fd81f9/control_v11p_sd15_canny.safetensors?download=true\n",
"Resolving huggingface.co (huggingface.co)... 3.163.189.114, 3.163.189.37, 3.163.189.90, ...\n",
"Connecting to huggingface.co (huggingface.co)|3.163.189.114|:443... connected.\n",
"HTTP request sent, awaiting response... 302 Found\n",
"Location: https://cas-bridge.xethub.hf.co/xet-bridge-us/64a6c62cfe51c2513b1d09ea/96c65651219f58113d481d9f4d8c997859022507135767714c965dcef8d84ec8?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=cas%2F20250907%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250907T004236Z&X-Amz-Expires=3600&X-Amz-Signature=0cf64ab0f9e60ec9e016737d2df16f38fcbcee56dccf5760681771f20b7a78e3&X-Amz-SignedHeaders=host&X-Xet-Cas-Uid=public&response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_v11p_sd15_canny.safetensors%3B+filename%3D%22control_v11p_sd15_canny.safetensors%22%3B&x-id=GetObject&Expires=1757209356&Policy=eyJTdGF0ZW1lbnQiOlt7IkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTc1NzIwOTM1Nn19LCJSZXNvdXJjZSI6Imh0dHBzOi8vY2FzLWJyaWRnZS54ZXRodWIuaGYuY28veGV0LWJyaWRnZS11cy82NGE2YzYyY2ZlNTFjMjUxM2IxZDA5ZWEvOTZjNjU2NTEyMTlmNTgxMTNkNDgxZDlmNGQ4Yzk5Nzg1OTAyMjUwNzEzNTc2NzcxNGM5NjVkY2VmOGQ4NGVjOCoifV19&Signature=Fr6%7EQ1oirzMjXoRTYQr3j8-LGqhm554dw-MqVUpOt7os12TzonJrT9k4eUaB%7E8ihcBeEmFt8j-EWqF8FW7T0oUTIxEhGnDvk7rPTIm5M4XQ1CAlLsDnzGZaGZQt6fMixt7-xVN%7ExjZ0vNXmGa3XeDuLGlM3CTDol-XTNngnp0tghUoY72BCAYdnt8PkRju3cE00NiliYbBG2iyLU0QavGPCRw9wqTU1VGN41X9EGXbXu37Szye4XDpEKHnNvlvVhWW1Lb0Ixr0rPhcQtvgciE%7E%7EcZk3TCvRuhX1w7AwdAge6RxTdybHzYWWMov1UJISbBdBIqiZn2jtcWTEYmewQrg__&Key-Pair-Id=K2L8F4GPSG1IFC [following]\n",
"--2025-09-07 00:42:36-- https://cas-bridge.xethub.hf.co/xet-bridge-us/64a6c62cfe51c2513b1d09ea/96c65651219f58113d481d9f4d8c997859022507135767714c965dcef8d84ec8?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=cas%2F20250907%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250907T004236Z&X-Amz-Expires=3600&X-Amz-Signature=0cf64ab0f9e60ec9e016737d2df16f38fcbcee56dccf5760681771f20b7a78e3&X-Amz-SignedHeaders=host&X-Xet-Cas-Uid=public&response-content-disposition=attachment%3B+filename*%3DUTF-8%27%27control_v11p_sd15_canny.safetensors%3B+filename%3D%22control_v11p_sd15_canny.safetensors%22%3B&x-id=GetObject&Expires=1757209356&Policy=eyJTdGF0ZW1lbnQiOlt7IkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTc1NzIwOTM1Nn19LCJSZXNvdXJjZSI6Imh0dHBzOi8vY2FzLWJyaWRnZS54ZXRodWIuaGYuY28veGV0LWJyaWRnZS11cy82NGE2YzYyY2ZlNTFjMjUxM2IxZDA5ZWEvOTZjNjU2NTEyMTlmNTgxMTNkNDgxZDlmNGQ4Yzk5Nzg1OTAyMjUwNzEzNTc2NzcxNGM5NjVkY2VmOGQ4NGVjOCoifV19&Signature=Fr6%7EQ1oirzMjXoRTYQr3j8-LGqhm554dw-MqVUpOt7os12TzonJrT9k4eUaB%7E8ihcBeEmFt8j-EWqF8FW7T0oUTIxEhGnDvk7rPTIm5M4XQ1CAlLsDnzGZaGZQt6fMixt7-xVN%7ExjZ0vNXmGa3XeDuLGlM3CTDol-XTNngnp0tghUoY72BCAYdnt8PkRju3cE00NiliYbBG2iyLU0QavGPCRw9wqTU1VGN41X9EGXbXu37Szye4XDpEKHnNvlvVhWW1Lb0Ixr0rPhcQtvgciE%7E%7EcZk3TCvRuhX1w7AwdAge6RxTdybHzYWWMov1UJISbBdBIqiZn2jtcWTEYmewQrg__&Key-Pair-Id=K2L8F4GPSG1IFC\n",
"Resolving cas-bridge.xethub.hf.co (cas-bridge.xethub.hf.co)... 3.165.160.91, 3.165.160.47, 3.165.160.110, ...\n",
"Connecting to cas-bridge.xethub.hf.co (cas-bridge.xethub.hf.co)|3.165.160.91|:443... connected.\n",
"HTTP request sent, awaiting response... 200 OK\n",
"Length: 722601100 (689M)\n",
"Saving to: ‘/content/ComfyUI/models/controlnet/control_v11p_sd15_canny.safetensors’\n",
"\n",
"/content/ComfyUI/mo 100%[===================>] 689.13M 58.2MB/s in 12s \n",
"\n",
"2025-09-07 00:42:48 (59.3 MB/s) - ‘/content/ComfyUI/models/controlnet/control_v11p_sd15_canny.safetensors’ saved [722601100/722601100]\n",
"\n",
"[START] Security scan\n",
"\u001b[2mUsing Python 3.12.11 environment at: /usr\u001b[0m\n",
"[DONE] Security scan\n",
"## ComfyUI-Manager: installing dependencies done.\n",
"** ComfyUI startup time: 2025-09-07 00:42:48.800\n",
"** Platform: Linux\n",
"** Python version: 3.12.11 (main, Jun 4 2025, 08:56:18) [GCC 11.4.0]\n",
"** Python executable: /usr/bin/python3\n",
"** ComfyUI Path: /content/ComfyUI\n",
"** ComfyUI Base Folder Path: /content/ComfyUI\n",
"** User directory: /content/ComfyUI/user\n",
"** ComfyUI-Manager config path: /content/ComfyUI/user/default/ComfyUI-Manager/config.ini\n",
"** Log path: /content/ComfyUI/user/comfyui.log\n",
"\u001b[2mUsing Python 3.12.11 environment at: /usr\u001b[0m\n",
"\u001b[2mUsing Python 3.12.11 environment at: /usr\u001b[0m\n",
"\n",
"Prestartup times for custom nodes:\n",
" 0.6 seconds: /content/ComfyUI/custom_nodes/ComfyUI-Manager\n",
"\n",
"Checkpoint files will always be loaded safely.\n",
"Total VRAM 15095 MB, total RAM 12978 MB\n",
"pytorch version: 2.8.0+cu126\n",
"Set vram state to: NORMAL_VRAM\n",
"Device: cuda:0 Tesla T4 : cudaMallocAsync\n",
"Using pytorch attention\n",
"Python version: 3.12.11 (main, Jun 4 2025, 08:56:18) [GCC 11.4.0]\n",
"ComfyUI version: 0.3.57\n",
"ComfyUI frontend version: 1.25.11\n",
"[Prompt Server] web root: /usr/local/lib/python3.12/dist-packages/comfyui_frontend_package/static\n",
"\u001b[36;20m[/content/ComfyUI/custom_nodes/comfyui_controlnet_aux] | INFO -> Using ckpts path: /content/ComfyUI/custom_nodes/comfyui_controlnet_aux/ckpts\u001b[0m\n",
"\u001b[36;20m[/content/ComfyUI/custom_nodes/comfyui_controlnet_aux] | INFO -> Using symlinks: False\u001b[0m\n",
"\u001b[36;20m[/content/ComfyUI/custom_nodes/comfyui_controlnet_aux] | INFO -> Using ort providers: ['CUDAExecutionProvider', 'DirectMLExecutionProvider', 'OpenVINOExecutionProvider', 'ROCMExecutionProvider', 'CPUExecutionProvider', 'CoreMLExecutionProvider']\u001b[0m\n",
"/content/ComfyUI/custom_nodes/comfyui_controlnet_aux/node_wrappers/dwpose.py:26: UserWarning: DWPose: Onnxruntime not found or doesn't come with acceleration providers, switch to OpenCV with CPU device. DWPose might run very slowly\n",
" warnings.warn(\"DWPose: Onnxruntime not found or doesn't come with acceleration providers, switch to OpenCV with CPU device. DWPose might run very slowly\")\n",
"### Loading: ComfyUI-Manager (V3.36)\n",
"[ComfyUI-Manager] network_mode: public\n",
"### ComfyUI Version: v0.3.57-6-gea6cdd26 | Released on '2025-09-06'\n",
"\n",
"Import times for custom nodes:\n",
" 0.0 seconds: /content/ComfyUI/custom_nodes/websocket_image_save.py\n",
" 0.1 seconds: /content/ComfyUI/custom_nodes/ComfyUI-Manager\n",
" 0.5 seconds: /content/ComfyUI/custom_nodes/comfyui_controlnet_aux\n",
"\n",
"[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/alter-list.json\n",
"[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/model-list.json\n",
"[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json\n",
"[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json\n",
"[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json\n",
"Context impl SQLiteImpl.\n",
"Will assume non-transactional DDL.\n",
"No target revision found.\n",
"********** ERROR ***********\n",
"\n",
"comfyui-workflow-templates is not installed.\n",
"\n",
"Please install the updated requirements.txt file by running:\n",
"/usr/bin/python3 -m pip install -r /content/ComfyUI/requirements.txt\n",
"If you are on the portable package you can run: update\\update_comfyui.bat to solve this problem.\n",
"\n",
"This error is happening because the ComfyUI frontend is no longer shipped as part of the main repo but as a pip package instead.\n",
"\n",
"********** ERROR ***********\n",
"comfyui-embedded-docs package not found\n",
"\n",
"ComfyUI finished loading, trying to launch cloudflared (if it gets stuck here cloudflared is having issues)\n",
"\n",
"FETCH ComfyRegistry Data: 5/96\n",
"This is the URL to access ComfyUI: https://swedish-strap-realtor-taxes.trycloudflare.com |\n",
"FETCH ComfyRegistry Data: 10/96\n",
"FETCH ComfyRegistry Data: 15/96\n",
"FETCH ComfyRegistry Data: 20/96\n",
"FETCH ComfyRegistry Data: 25/96\n",
"FETCH ComfyRegistry Data: 30/96\n",
"FETCH ComfyRegistry Data: 35/96\n",
"FETCH ComfyRegistry Data: 40/96\n",
"FETCH ComfyRegistry Data: 45/96\n",
"FETCH ComfyRegistry Data: 50/96\n",
"FETCH ComfyRegistry Data: 55/96\n",
"FETCH ComfyRegistry Data: 60/96\n",
"FETCH ComfyRegistry Data: 65/96\n",
"FETCH ComfyRegistry Data: 70/96\n",
"FETCH ComfyRegistry Data: 75/96\n",
"FETCH ComfyRegistry Data: 80/96\n",
"FETCH ComfyRegistry Data: 85/96\n",
"FETCH ComfyRegistry Data: 90/96\n",
"FETCH ComfyRegistry Data: 95/96\n",
"FETCH ComfyRegistry Data [DONE]\n",
"[ComfyUI-Manager] default cache updated: https://api.comfy.org/nodes\n",
"FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json [DONE]\n",
"[ComfyUI-Manager] All startup tasks have been completed.\n",
"got prompt\n",
"Failed to validate prompt for output 6:\n",
"* KSampler 1:\n",
" - Required input is missing: positive\n",
" - Required input is missing: negative\n",
" - Required input is missing: latent_image\n",
"Output will be ignored\n",
"Prompt executed in 0.16 seconds\n",
"got prompt\n",
"Failed to validate prompt for output 6:\n",
"* ControlNetApplyAdvanced 16:\n",
" - Required input is missing: control_net\n",
"* KSampler 1:\n",
" - Required input is missing: latent_image\n",
"Output will be ignored\n",
"Prompt executed in 0.01 seconds\n",
"got prompt\n",
"Failed to validate prompt for output 6:\n",
"* ControlNetApplyAdvanced 16:\n",
" - Required input is missing: control_net\n",
"Output will be ignored\n",
"Prompt executed in 0.01 seconds\n",
"got prompt\n",
"Failed to validate prompt for output 6:\n",
"* ControlNetApplyAdvanced 16:\n",
" - Required input is missing: control_net\n",
"Output will be ignored\n",
"Prompt executed in 0.01 seconds\n",
"got prompt\n",
"model weight dtype torch.float16, manual cast: None\n",
"model_type EPS\n",
"Using pytorch attention in VAE\n",
"Using pytorch attention in VAE\n",
"VAE load device: cuda:0, offload device: cpu, dtype: torch.float32\n",
"CLIP/text encoder model load device: cuda:0, offload device: cpu, current: cpu, dtype: torch.float16\n",
"loaded diffusion model directly to GPU\n",
"Requested to load BaseModel\n",
"loaded completely 9.5367431640625e+25 1639.406135559082 True\n",
"Requested to load SD1ClipModel\n",
"loaded completely 12113.511235046386 235.84423828125 True\n",
"Requested to load ControlNet\n",
"loaded completely 11843.541760253906 689.0852355957031 True\n",
"100% 60/60 [00:26<00:00, 2.25it/s]\n",
"Requested to load AutoencoderKL\n",
"loaded completely 7611.656757354736 319.11416244506836 True\n",
"Prompt executed in 52.66 seconds\n",
"got prompt\n",
"100% 60/60 [01:14<00:00, 1.25s/it]\n",
"Prompt executed in 77.01 seconds\n",
"got prompt\n",
"model weight dtype torch.float16, manual cast: None\n",
"model_type EPS\n",
"Using pytorch attention in VAE\n",
"Using pytorch attention in VAE\n",
"VAE load device: cuda:0, offload device: cpu, dtype: torch.float32\n",
"CLIP/text encoder model load device: cuda:0, offload device: cpu, current: cpu, dtype: torch.float16\n",
"loaded diffusion model directly to GPU\n",
"Requested to load BaseModel\n",
"loaded completely 9.5367431640625e+25 1639.406135559082 True\n",
"Requested to load SD1ClipModel\n",
"loaded completely 11384.300999450683 235.84423828125 True\n",
"100% 60/60 [01:15<00:00, 1.26s/it]\n",
"Requested to load AutoencoderKL\n",
"loaded completely 3255.6567573547363 319.11416244506836 True\n",
"Prompt executed in 88.47 seconds\n",
"got prompt\n",
"100% 60/60 [00:11<00:00, 5.13it/s]\n",
"Prompt executed in 12.21 seconds\n",
"got prompt\n",
"Warning, This is not a checkpoint file, trying to load it as a diffusion model only.\n",
"!!! Exception during processing !!! ERROR: Could not detect model type of: /content/ComfyUI/models/checkpoints/midjourneyanime.safetensors\n",
"\n",
"Traceback (most recent call last):\n",
" File \"/content/ComfyUI/execution.py\", line 496, in execute\n",
" output_data, output_ui, has_subgraph, has_pending_tasks = await get_output_data(prompt_id, unique_id, obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb, hidden_inputs=hidden_inputs)\n",
" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n",
" File \"/content/ComfyUI/execution.py\", line 315, in get_output_data\n",
" return_values = await _async_map_node_over_list(prompt_id, unique_id, obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb, hidden_inputs=hidden_inputs)\n",
" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n",
" File \"/content/ComfyUI/execution.py\", line 289, in _async_map_node_over_list\n",
" await process_inputs(input_dict, i)\n",
" File \"/content/ComfyUI/execution.py\", line 277, in process_inputs\n",
" result = f(**inputs)\n",
" ^^^^^^^^^^^\n",
" File \"/content/ComfyUI/nodes.py\", line 578, in load_checkpoint\n",
" out = comfy.sd.load_checkpoint_guess_config(ckpt_path, output_vae=True, output_clip=True, embedding_directory=folder_paths.get_folder_paths(\"embeddings\"))\n",
" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n",
" File \"/content/ComfyUI/comfy/sd.py\", line 1051, in load_checkpoint_guess_config\n",
" raise RuntimeError(\"ERROR: Could not detect model type of: {}\\n{}\".format(ckpt_path, model_detection_error_hint(ckpt_path, sd)))\n",
"RuntimeError: ERROR: Could not detect model type of: /content/ComfyUI/models/checkpoints/midjourneyanime.safetensors\n",
"\n",
"\n",
"Prompt executed in 0.70 seconds\n",
"got prompt\n",
"model weight dtype torch.float16, manual cast: None\n",
"model_type EPS\n",
"Using pytorch attention in VAE\n",
"Using pytorch attention in VAE\n",
"VAE load device: cuda:0, offload device: cpu, dtype: torch.float32\n",
"CLIP/text encoder model load device: cuda:0, offload device: cpu, current: cpu, dtype: torch.float16\n",
"loaded diffusion model directly to GPU\n",
"Requested to load BaseModel\n",
"loaded completely 9.5367431640625e+25 1639.406135559082 True\n",
"Requested to load SD1ClipModel\n",
"loaded completely 11384.300999450683 235.84423828125 True\n",
"100% 60/60 [00:11<00:00, 5.27it/s]\n",
"Requested to load AutoencoderKL\n",
"loaded completely 9789.656757354736 319.11416244506836 True\n",
"Prompt executed in 39.85 seconds\n",
"got prompt\n",
"100% 60/60 [00:11<00:00, 5.26it/s]\n",
"Prompt executed in 12.43 seconds\n",
"got prompt\n",
"100% 60/60 [00:11<00:00, 5.25it/s]\n",
"Prompt executed in 11.96 seconds\n",
"got prompt\n",
"100% 80/80 [00:15<00:00, 5.27it/s]\n",
"Prompt executed in 15.69 seconds\n",
"got prompt\n",
"100% 80/80 [00:15<00:00, 5.25it/s]\n",
"Prompt executed in 15.76 seconds\n",
"got prompt\n",
"100% 80/80 [00:15<00:00, 5.24it/s]\n",
"Prompt executed in 15.78 seconds\n",
"got prompt\n",
"100% 80/80 [00:15<00:00, 5.25it/s]\n",
"Prompt executed in 15.73 seconds\n",
"got prompt\n",
"100% 120/120 [00:22<00:00, 5.24it/s]\n",
"Prompt executed in 23.43 seconds\n",
"got prompt\n",
"Failed to validate prompt for output 19:\n",
"* ImageScaleBy 18:\n",
" - Required input is missing: image\n",
"Output will be ignored\n",
"100% 120/120 [00:23<00:00, 5.20it/s]\n",
"Prompt executed in 23.61 seconds\n",
"got prompt\n",
"100% 120/120 [02:32<00:00, 1.27s/it]\n",
"Prompt executed in 154.97 seconds\n",
"got prompt\n",
"100% 120/120 [02:32<00:00, 1.27s/it]\n",
"Prompt executed in 154.79 seconds\n",
"got prompt\n",
"model weight dtype torch.float16, manual cast: None\n",
"model_type EPS\n",
"Using pytorch attention in VAE\n",
"Using pytorch attention in VAE\n",
"VAE load device: cuda:0, offload device: cpu, dtype: torch.float32\n",
"CLIP/text encoder model load device: cuda:0, offload device: cpu, current: cpu, dtype: torch.float16\n",
"loaded diffusion model directly to GPU\n",
"Requested to load BaseModel\n",
"loaded completely 9.5367431640625e+25 1639.406135559082 True\n",
"Requested to load SD1ClipModel\n",
"loaded completely 11384.300999450683 235.84423828125 True\n",
"100% 120/120 [02:32<00:00, 1.27s/it]\n",
"Requested to load AutoencoderKL\n",
"loaded completely 3255.6567573547363 319.11416244506836 True\n",
"Prompt executed in 180.56 seconds\n"
]
}
],
"source": [
"!wget -P ~ https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb\n",
"!dpkg -i ~/cloudflared-linux-amd64.deb\n",
"!pip install av\n",
"!COMFYUI_DIR=\"${COMFYUI_DIR:-/content/ComfyUI}\"; mkdir -p \"$COMFYUI_DIR/custom_nodes\" && cd \"$COMFYUI_DIR/custom_nodes\" && [ -d comfyui_controlnet_aux ] || git clone https://github.com/Fannovel16/comfyui_controlnet_aux.git\n",
"!wget -O /content/ComfyUI/models/controlnet/control_v11p_sd15_canny.safetensors \"https://huggingface.co/StableDiffusionVN/Prunedcontrolnet/resolve/2425b627f0cb73c148a827b1ca09796eb2fd81f9/control_v11p_sd15_canny.safetensors?download=true\"\n",
"\n",
"import subprocess\n",
"import threading\n",
"import time\n",
"import socket\n",
"import urllib.request\n",
"\n",
"def iframe_thread(port):\n",
" while True:\n",
" time.sleep(0.5)\n",
" sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\n",
" result = sock.connect_ex(('127.0.0.1', port))\n",
" if result == 0:\n",
" break\n",
" sock.close()\n",
" print(\"\\nComfyUI finished loading, trying to launch cloudflared (if it gets stuck here cloudflared is having issues)\\n\")\n",
"\n",
" p = subprocess.Popen([\"cloudflared\", \"tunnel\", \"--url\", \"http://127.0.0.1:{}\".format(port)], stdout=subprocess.PIPE, stderr=subprocess.PIPE)\n",
" for line in p.stderr:\n",
" l = line.decode()\n",
" if \"trycloudflare.com \" in l:\n",
" print(\"This is the URL to access ComfyUI:\", l[l.find(\"http\"):], end='')\n",
" #print(l, end='')\n",
"\n",
"\n",
"threading.Thread(target=iframe_thread, daemon=True, args=(8188,)).start()\n",
"\n",
"!python main.py --dont-print-server"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "kkkkkkkkkkkkkk"
},
"source": [
"### Run ComfyUI with localtunnel\n",
"\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "jjjjjjjjjjjjj"
},
"outputs": [],
"source": [
"!npm install -g localtunnel\n",
"\n",
"import subprocess\n",
"import threading\n",
"import time\n",
"import socket\n",
"import urllib.request\n",
"\n",
"def iframe_thread(port):\n",
" while True:\n",
" time.sleep(0.5)\n",
" sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\n",
" result = sock.connect_ex(('127.0.0.1', port))\n",
" if result == 0:\n",
" break\n",
" sock.close()\n",
" print(\"\\nComfyUI finished loading, trying to launch localtunnel (if it gets stuck here localtunnel is having issues)\\n\")\n",
"\n",
" print(\"The password/enpoint ip for localtunnel is:\", urllib.request.urlopen('https://ipv4.icanhazip.com').read().decode('utf8').strip(\"\\n\"))\n",
" p = subprocess.Popen([\"lt\", \"--port\", \"{}\".format(port)], stdout=subprocess.PIPE)\n",
" for line in p.stdout:\n",
" print(line.decode(), end='')\n",
"\n",
"\n",
"threading.Thread(target=iframe_thread, daemon=True, args=(8188,)).start()\n",
"\n",
"!python main.py --dont-print-server"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "gggggggggg"
},
"source": [
"### Run ComfyUI with colab iframe (use only in case the previous way with localtunnel doesn't work)\n",
"\n",
"You should see the ui appear in an iframe. If you get a 403 error, it's your firefox settings or an extension that's messing things up.\n",
"\n",
"If you want to open it in another window use the link.\n",
"\n",
"Note that some UI features like live image previews won't work because the colab iframe blocks websockets."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "hhhhhhhhhh"
},
"outputs": [],
"source": [
"import threading\n",
"import time\n",
"import socket\n",
"def iframe_thread(port):\n",
" while True:\n",
" time.sleep(0.5)\n",
" sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\n",
" result = sock.connect_ex(('127.0.0.1', port))\n",
" if result == 0:\n",
" break\n",
" sock.close()\n",
" from google.colab import output\n",
" output.serve_kernel_port_as_iframe(port, height=1024)\n",
" print(\"to open it in a window you can open this link here:\")\n",
" output.serve_kernel_port_as_window(port)\n",
"\n",
"threading.Thread(target=iframe_thread, daemon=True, args=(8188,)).start()\n",
"\n",
"!python main.py --dont-print-server"
]
}
],
"metadata": {
"accelerator": "GPU",
"colab": {
"provenance": []
},
"gpuClass": "standard",
"kernelspec": {
"display_name": "Python 3",
"name": "python3"
},
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 0
} |