diff --git a/2_INSTALL_CUSTOM_NODES.bat b/2_INSTALL_CUSTOM_NODES.bat new file mode 100644 index 000000000..4b4ed2036 --- /dev/null +++ b/2_INSTALL_CUSTOM_NODES.bat @@ -0,0 +1,36 @@ +@echo off +setlocal + +set "ROOT=D:\4090_ComfyUI" +pushd "%ROOT%" + +:: Activate venv, then list packages +for %%A in ("venv\Scripts\activate.bat" ".venv\Scripts\activate.bat") do ( + if exist "%%~A" ( + call "%%~A" + goto after_venv + ) +) +:after_venv +pip list + +:: Ensure custom_nodes exists +set "CNDIR=%ROOT%\custom_nodes" +if not exist "%CNDIR%\" mkdir "%CNDIR%" + +:: Check for ComfyUI-Manager and clone if missing +set "TARGET=%CNDIR%\ComfyUI-Manager" +if exist "%TARGET%\NUL" ( + echo %TARGET% +) else ( + echo ComfyUI-Manager folder not found. + echo Cloning into "%TARGET%" ... + git clone --depth 1 https://github.com/Comfy-Org/ComfyUI-Manager "%TARGET%" + if errorlevel 1 ( + echo git clone failed with errorlevel %errorlevel%. + ) else ( + echo Clone complete. + ) +) + +pause \ No newline at end of file diff --git a/desktop.ini b/desktop.ini new file mode 100644 index 000000000..f7b7d5b6b --- /dev/null +++ b/desktop.ini @@ -0,0 +1,6 @@ +[.ShellClassInfo] +IconResource=C:\Users\james\Downloads\comfyui_logo.ico,0 +[ViewState] +Mode= +Vid= +FolderType=Generic diff --git a/output/_output_images_will_be_put_here b/output/_output_images_will_be_put_here deleted file mode 100644 index e69de29bb..000000000