Skip to content

Instantly share code, notes, and snippets.

@brayevalerien
Last active April 9, 2025 06:33
Show Gist options
  • Save brayevalerien/0086cbb5123ceed661d7092b3dc221ae to your computer and use it in GitHub Desktop.
Save brayevalerien/0086cbb5123ceed661d7092b3dc221ae to your computer and use it in GitHub Desktop.
ComfyUI and Kohya SS launchers
echo off
REM Please keep up to date with https://gist.github.com/brayevalerien/0086cbb5123ceed661d7092b3dc221ae
set CONDAENV=comfyui
set COMFYPATH=C:\Users\AIXXX\comfyui\main.py
echo ====== Starting ComfyUI from %cd% ========
echo [ComfyUI Launcher] Activating Conda environment...
call conda activate %CONDAENV%
echo [ComfyUI Launcher] Launching ComfyUI...
call python %COMFYPATH% --front-end-version Comfy-Org/ComfyUI_frontend@latest %*
echo [ComfyUI Launcher] Process got interrupted.
pause
@echo off
echo ======== Starting Kohya SS from %cd% ========
echo [Kohya SS Launcher] Opening browser...
start "" http://127.0.0.1:7860
echo [Kohya SS Launcher] Launching Kohya SS...
call ./gui.bat
echo [Kohya SS Launcher] Process got interrupted.
pause

Comments are disabled for this gist.