Home Artists Posts Import Register

Downloads

Content

Patreon exclusive posts index to find our scripts easily

Join discord to get help, chat, discuss and also tell me your discord username to get your special rank : SECourses Discord

Please also Star, Watch and Fork our Stable Diffusion & Generative AI  GitHub repository and join our Reddit subreddit and follow me on LinkedIn (my real profile)

2 August 2024 Update

28 June 2024 Update

  • ComfyUI manager added to the installation process for those who wants to use

Features

  • SwarmUI is just working amazing on a free Kaggle account : https://www.kaggle.com

  • It supports all SD models including SD3

  • 1 cell to download best SD 1.5, SDXL and SD3 models

  • To learn how to use SwarmUI watch this amazing tutorial

  • 70 chapters with manually fixed captions : https://youtu.be/HKX8_F1Er_w

  • Watching above tutorial is mandatory to learn how to use SwarmUI

  • For this Kaggle account how to install and use tutorial video is below

  • https://youtu.be/XFUZof6Skkw

  • Still follow the instructions on Kaggle notebook to use it

  • It is 1 step install, and then 1 step restart (restart mandatory to change root folder)

  • Download and use attached Kaggle notebook file and follow the instructions

 

Comments

mike oxmaul

How can I install comfyui manager?

mike oxmaul

Yeah I occasionally use extensions from within there. More so interested in how to do it.

Furkan Gözükara

For ComfyUI : cd custom_nodes git clone https://github.com/ltdrdata/ComfyUI-Manager for SwarmUI cd SwarmUI\dlbackend\comfy\ComfyUI\custom_nodes git clone https://github.com/ltdrdata/ComfyUI-Manager

mike oxmaul

Need to install Git first. import subprocess # Update package lists subprocess.run(["sudo", "apt", "update"], check=True) # Install git subprocess.run(["sudo", "apt", "install", "-y", "git"], check=True) Then run this cd /kaggle/working/SwarmUI/dlbackend/ComfyUI/custom_nodes Then install comfyui manager: import subprocess # Clone the repository subprocess.run(["git", "clone", "https://github.com/ltdrdata/ComfyUI-Manager"], check=True) -------------- Kill whats running on Port 5000. Install this: pip install psutil Kill it: import psutil def kill_process_on_port(port): for proc in psutil.process_iter(['pid', 'name']): try: for conn in proc.connections(kind='inet'): if conn.laddr.port == port: print(f"Killing process {proc.info['name']} with PID {proc.info['pid']} using port {port}") proc.kill() return True except (psutil.AccessDenied, psutil.NoSuchProcess): continue return False if kill_process_on_port(5000): print("Process on port 5000 has been terminated.") else: print("No process found on port 5000.") ------------- Run step 3 again Run step 5 again

Jorge Reverte Sevillano

Hi! This would be really useful to me but i dont't get where I should put this commands to use comfyui instead of stable swarm. Could you elaborate with a screenshot or add it as optional code in the notebook?? Thanks!!