Compare commits

...

29 Commits

Author SHA1 Message Date
tom-m
dc1ef3e7a9
Merge c59d76fa2b into 3fe9f5fecb 2026-07-04 14:10:46 +08:00
Jedrzej Kosinski
c59d76fa2b
Merge branch 'master' into better-isolation 2026-06-01 23:17:04 -07:00
Alexis Rolland
da30fe550e Fix line endings 2026-05-27 22:57:40 -07:00
Alexis Rolland
e547a59ac0
Merge branch 'master' into better-isolation 2026-05-27 22:45:20 -07:00
tom-m
d4edaaf033
Fix path references in run_amd_gpu.bat 2026-05-18 13:10:28 +09:00
tom-m
fd94e2802e
Update batch script to use BASE variable for paths 2026-05-18 13:10:09 +09:00
tom-m
46848002f1
Fix path references in run_intel_gpu.bat 2026-05-18 13:09:38 +09:00
tom-m
69db4bc753
Fix path references in run_nvidia_gpu_fast.bat 2026-05-18 13:09:05 +09:00
tom-m
af5d161005
Fix path references in run_nvidia_gpu_disable_api_nodes.bat 2026-05-18 13:08:29 +09:00
tom-m
758ea140ce
Update run_cpu.bat to use BASE variable for paths 2026-05-18 13:06:07 +09:00
tom-m
fa7422027a
Fix syntax for running Nvidia GPU script 2026-05-18 13:05:39 +09:00
tom-m
a29ca2c89e
Refactor run_nvidia_gpu.bat to use BASE variable 2026-05-18 13:05:21 +09:00
tom-m
21edf32dc6
Refactor batch script to use BASE variable 2026-05-18 13:04:29 +09:00
tom-m
a383e05faa
removed cache dir reset and make code more consistent 2026-05-18 12:28:28 +09:00
tom-m
2a26fb51bc
removed cache dir reset and make code more consistent 2026-05-18 12:28:05 +09:00
tom-m
2227364e3f
removed cache dir reset and make code more consistent 2026-05-18 12:27:37 +09:00
tom-m
130315b3bd
removed cache dir reset and make code more consistent 2026-05-18 12:27:13 +09:00
tom-m
1a86965dd5
removed cache dir reset and make code more consistent
Removed user profile cache environment variable settings from the script.
2026-05-18 12:26:50 +09:00
tom-m
dca779916c
removed cache dir reset and make code more consistent 2026-05-18 12:26:27 +09:00
tom-m
e9bc09475b
removed cache dir reset and make code more consistent 2026-05-18 12:26:05 +09:00
tom-m
23efaf371a
removed cache dir reset and make code more consistent 2026-05-18 12:25:28 +09:00
tom-m
af99c5be64
fix: prevent user-site package leakage 2026-05-18 03:18:51 +09:00
tom-m
8e51ecb297
fix: prevent user-site package leakage
Set environment variables for user profile and cache paths before running the Python script.
2026-05-18 03:17:33 +09:00
tom-m
78c92f863d
fix: prevent user-site package leakage
Set environment variables for user profile and cache paths before executing the Python script.
2026-05-18 03:17:12 +09:00
tom-m
acb16b9fa4
fix: prevent user-site package leakage
Set environment variables for user profile and cache directories before running the Python script.
2026-05-18 03:16:50 +09:00
tom-m
601a7eb213
fix: prevent user-site package leakage
Set environment variables for user profile and cache paths before running the Python script.
2026-05-18 03:16:07 +09:00
tom-m
3b3b65a087
fix: prevent user-site package leakage
Set environment variables for user profile and cache paths.
2026-05-18 03:15:32 +09:00
tom-m
f4f7774aa8
fix: prevent user-site package leakage 2026-05-18 03:14:44 +09:00
tom-m
9f2c1ed7e9
fix: prevent user-site package leakage 2026-05-18 03:14:01 +09:00
8 changed files with 67 additions and 19 deletions

View File

@ -1,2 +1,8 @@
.\python_embeded\python.exe -s ComfyUI\main.py --windows-standalone-build
pause
set "BASE=%~dp0"
set "PYTHONNOUSERSITE=1"
set "PYTHONPATH="
set "PYTHONHOME="
"%BASE%python_embeded\python.exe" -s "%BASE%ComfyUI\main.py" --windows-standalone-build
pause

View File

@ -1,2 +1,8 @@
.\python_embeded\python.exe -s ComfyUI\main.py --windows-standalone-build --enable-dynamic-vram
pause
set "BASE=%~dp0"
set "PYTHONNOUSERSITE=1"
set "PYTHONPATH="
set "PYTHONHOME="
"%BASE%python_embeded\python.exe" -s "%BASE%ComfyUI\main.py" --windows-standalone-build --enable-dynamic-vram
pause

View File

@ -1,2 +1,8 @@
.\python_embeded\python.exe -s ComfyUI\main.py --windows-standalone-build
pause
set "BASE=%~dp0"
set "PYTHONNOUSERSITE=1"
set "PYTHONPATH="
set "PYTHONHOME="
"%BASE%python_embeded\python.exe" -s "%BASE%ComfyUI\main.py" --windows-standalone-build
pause

View File

@ -1,2 +1,8 @@
.\python_embeded\python.exe -s ComfyUI\main.py --windows-standalone-build --fast
pause
set "BASE=%~dp0"
set "PYTHONNOUSERSITE=1"
set "PYTHONPATH="
set "PYTHONHOME="
"%BASE%python_embeded\python.exe" -s "%BASE%ComfyUI\main.py" --windows-standalone-build --fast
pause

View File

@ -1,3 +1,9 @@
..\python_embeded\python.exe -s ..\ComfyUI\main.py --windows-standalone-build --disable-api-nodes
echo If you see this and ComfyUI did not start try updating your Nvidia Drivers to the latest. If you get a c10.dll error you need to install vc redist that you can find: https://aka.ms/vc14/vc_redist.x64.exe
pause
set "BASE=%~dp0"
set "PYTHONNOUSERSITE=1"
set "PYTHONPATH="
set "PYTHONHOME="
"%BASE%..\python_embeded\python.exe" -s "%BASE%..\ComfyUI\main.py" --windows-standalone-build --disable-api-nodes
echo If you see this and ComfyUI did not start try updating your Nvidia Drivers to the latest. If you get a c10.dll error you need to install vc redist that you can find: https://aka.ms/vc14/vc_redist.x64.exe
pause

View File

@ -1,2 +1,8 @@
.\python_embeded\python.exe -s ComfyUI\main.py --cpu --windows-standalone-build
pause
set "BASE=%~dp0"
set "PYTHONNOUSERSITE=1"
set "PYTHONPATH="
set "PYTHONHOME="
"%BASE%python_embeded\python.exe" -s "%BASE%ComfyUI\main.py" --cpu --windows-standalone-build
pause

View File

@ -1,3 +1,9 @@
.\python_embeded\python.exe -s ComfyUI\main.py --windows-standalone-build
echo If you see this and ComfyUI did not start try updating your Nvidia Drivers to the latest. If you get a c10.dll error you need to install vc redist that you can find: https://aka.ms/vc14/vc_redist.x64.exe
pause
set "BASE=%~dp0"
set "PYTHONNOUSERSITE=1"
set "PYTHONPATH="
set "PYTHONHOME="
"%BASE%python_embeded\python.exe" -s "%BASE%ComfyUI\main.py" --windows-standalone-build
echo If you see this and ComfyUI did not start try updating your Nvidia Drivers to the latest. If you get a c10.dll error you need to install vc redist that you can find: https://aka.ms/vc14/vc_redist.x64.exe
pause

View File

@ -1,3 +1,9 @@
.\python_embeded\python.exe -s ComfyUI\main.py --windows-standalone-build --fast fp16_accumulation
echo If you see this and ComfyUI did not start try updating your Nvidia Drivers to the latest. If you get a c10.dll error you need to install vc redist that you can find: https://aka.ms/vc14/vc_redist.x64.exe
pause
set "BASE=%~dp0"
set "PYTHONNOUSERSITE=1"
set "PYTHONPATH="
set "PYTHONHOME="
"%BASE%python_embeded\python.exe" -s "%BASE%ComfyUI\main.py" --windows-standalone-build --fast fp16_accumulation
echo If you see this and ComfyUI did not start try updating your Nvidia Drivers to the latest. If you get a c10.dll error you need to install vc redist that you can find: https://aka.ms/vc14/vc_redist.x64.exe
pause