XLabs-AI / x-flux-comfyui

Apache License 2.0
1.06k stars 71 forks source link

setup-portable.bat #70

Closed MushroomFleet closed 2 months ago

MushroomFleet commented 2 months ago

This can help users to install when using the comfyUI portable installation with embedded python

Thanks for the Amazing Release !

setup-portable.bat

@echo off

set "python_exec=..\..\..\python_embeded\python.exe"

echo Installing node...

if exist "%python_exec%" (
    echo Installing with ComfyUI Portable
    "%python_exec%" setup.py"
) else (
    echo Installing with system Python
    setup.py"
)

pause

execute inside ComfyUI\custom_nodes\x-flux-comfyui

Vovanm88 commented 2 months ago

please make a PR

MushroomFleet commented 2 months ago

please make a PR

PR done :) Thanks for all your hard work !!!