Make it more clear the recommended way to update the standalone build.

This commit is contained in:
comfyanonymous 2023-03-14 19:08:23 -04:00
parent 268a2dab71
commit 6d44cf74e3
11 changed files with 20 additions and 17 deletions

View File

@ -0,0 +1,3 @@
..\..\python_embeded\python.exe ..\update.py ..\..\ComfyUI\
..\..\python_embeded\python.exe -s -m pip install --upgrade --pre torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu118 -r ../../ComfyUI/requirements.txt pygit2
pause

View File

@ -1,3 +0,0 @@
..\python_embeded\python.exe .\update.py ..\ComfyUI\
..\python_embeded\python.exe -s -m pip install --upgrade --pre torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu118 -r ../ComfyUI/requirements.txt pygit2
pause

View File

@ -19,8 +19,9 @@ You can download the stable diffusion 1.5 one from: https://huggingface.co/runwa
RECOMMENDED WAY TO UPDATE:
To update only the ComfyUI code: update\update_comfyui_only.bat
To update the ComfyUI code: update\update_comfyui.bat
To update ComfyUI with the python dependencies (ONLY USE IF YOU NEED TO UPDATE THE PYTHON PACKAGES): update\update_all.bat
To update ComfyUI with the python dependencies:
update\ONLY_RUN_THIS_IF_YOU_HAVE_TO\update_comfyui_and_python_dependencies.bat

View File

@ -16,8 +16,8 @@ mv ComfyUI_copy ComfyUI_windows_portable/ComfyUI
cd ComfyUI_windows_portable
mkdir update
cp ComfyUI/.ci/update_windows/* ./update/
cp ComfyUI/.ci/windows_base_files/* ./
cp -r ComfyUI/.ci/update_windows/* ./update/
cp -r ComfyUI/.ci/windows_base_files/* ./
cd ..

View File

@ -18,8 +18,8 @@ mv ComfyUI_copy ComfyUI_windows_portable_nightly_pytorch/ComfyUI
cd ComfyUI_windows_portable_nightly_pytorch
mkdir update
cp ComfyUI/.ci/nightly/update_windows/* ./update/
cp ComfyUI/.ci/nightly/windows_base_files/* ./
cp -r ComfyUI/.ci/nightly/update_windows/* ./update/
cp -r ComfyUI/.ci/nightly/windows_base_files/* ./
cd ..

View File

@ -0,0 +1,3 @@
..\..\python_embeded\python.exe ..\update.py ..\..\ComfyUI\
..\..\python_embeded\python.exe -s -m pip install --upgrade torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117 xformers -r ../../ComfyUI/requirements.txt pygit2
pause

View File

@ -1,3 +0,0 @@
..\python_embeded\python.exe .\update.py ..\ComfyUI\
..\python_embeded\python.exe -s -m pip install --upgrade torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117 xformers -r ../ComfyUI/requirements.txt pygit2
pause

View File

@ -18,8 +18,10 @@ You can download the stable diffusion 1.5 one from: https://huggingface.co/runwa
RECOMMENDED WAY TO UPDATE:
To update only the ComfyUI code: update\update_comfyui_only.bat
To update the ComfyUI code: update\update_comfyui.bat
To update ComfyUI with the python dependencies (ONLY USE IF YOU NEED TO UPDATE THE PYTHON PACKAGES): update\update_all.bat
To update ComfyUI with the python dependencies:
update\ONLY_RUN_THIS_IF_YOU_HAVE_TO\update_comfyui_and_python_dependencies.bat

View File

@ -811,7 +811,7 @@ class SaveImage:
if not os.path.exists(self.output_dir):
os.makedirs(self.output_dir)
paths = list()
for image in images:
i = 255. * image.cpu().numpy()
@ -835,11 +835,11 @@ class PreviewImage(SaveImage):
@classmethod
def INPUT_TYPES(s):
return {"required":
return {"required":
{"images": ("IMAGE", ), },
"hidden": {"prompt": "PROMPT", "extra_pnginfo": "EXTRA_PNGINFO"},
}
class LoadImage:
input_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "input")
@classmethod