-
[SUPPORT] - stable-diffusion Advanced
I'm trying to upgrade to the new version with comfy-ui and for some reason it seems to be looking for `/outputs` and not `/config/outputs`: comfy-ui | FileNotFoundError: [Errno 2] No such file or directory: '/outputs/05-comfy-ui/' comfy-ui | comfy-ui | During handling of the above exception, another exception occurred: comfy-ui | comfy-ui | Traceback (most recent call last): comfy-ui | File "/config/05-comfy-ui/ComfyUI/execution.py", line 153, in recursive_execute comfy-ui | output_data, output_ui = get_output_data(obj, input_data_all) comfy-ui | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comfy-ui | File "/config/05-comfy-ui/ComfyUI/execution.py", line 83, in get_output_data comfy-ui | return_values = map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True) comfy-ui | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comfy-ui | File "/config/05-comfy-ui/ComfyUI/execution.py", line 76, in map_node_over_list comfy-ui | results.append(getattr(obj, func)(**slice_dict(input_data_all, i))) comfy-ui | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comfy-ui | File "/config/05-comfy-ui/ComfyUI/nodes.py", line 1359, in save_images comfy-ui | full_output_folder, filename, counter, subfolder, filename_prefix = folder_paths.get_save_image_path(filename_prefix, self.output_dir, images[0].shape[1], images[0].shape[0]) comfy-ui | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comfy-ui | File "/config/05-comfy-ui/ComfyUI/folder_paths.py", line 246, in get_save_image_path comfy-ui | os.makedirs(full_output_folder, exist_ok=True) comfy-ui | File "<frozen os>", line 215, in makedirs comfy-ui | File "<frozen os>", line 225, in makedirs comfy-ui | PermissionError: [Errno 13] Permission denied: '/outputs' comfy-ui | comfy-ui | Prompt executed in 9.03 seconds comfy-ui | gc collect
-
[SUPPORT] - stable-diffusion Advanced
Thanks man. That does work. I made a PR to downgrade it https://github.com/grokuku/stable-diffusion/pull/5
-
[SUPPORT] - stable-diffusion Advanced
Thanks man. I posted an issue here and they asked me to check the Python version https://github.com/lllyasviel/Fooocus/issues/1413#issuecomment-1856914993 Is it 3.11?
-
[SUPPORT] - stable-diffusion Advanced
@FoxxMD after the first install, I am running into this error with Fooocus with ghcr.io/foxxmd/stable-diffusion:latest fooocus-fox | onnxruntime 1.16.3 depends on numpy>=1.24.2 fooocus-fox | fooocus-fox | To fix this you could try to: fooocus-fox | 1. loosen the range of package versions you've specified fooocus-fox | 2. remove package versions to allow pip attempt to solve the dependency conflict fooocus-fox | fooocus-fox | ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts fooocus-fox | [System ARGV] ['launch.py', '--listen', '0.0.0.0', '--port', '9000'] fooocus-fox | Traceback (most recent call last): fooocus-fox | File "/config/06-Fooocus/Fooocus/launch.py", line 24, in <module> fooocus-fox | from modules.config import path_checkpoints, path_loras, path_vae_approx, path_fooocus_expansion, \ fooocus-fox | File "/config/06-Fooocus/Fooocus/modules/config.py", line 7, in <module> fooocus-fox | import modules.sdxl_styles fooocus-fox | File "/config/06-Fooocus/Fooocus/modules/sdxl_styles.py", line 5, in <module> fooocus-fox | from modules.util import get_files_from_folder fooocus-fox | File "/config/06-Fooocus/Fooocus/modules/util.py", line 1, in <module> fooocus-fox | import numpy as np fooocus-fox | ModuleNotFoundError: No module named 'numpy'
-
[SUPPORT] - stable-diffusion Advanced
@FoxxMD I reviewed your PRs and it looks like great work. I hope it makes its way into the project at some point. Hopefully it's not a problem to discuss your fork a bit in this thread considering the two projects may eventually merge in the future. I'm trying out your branch on my system (which is not Unraid, just a Windows box with WSL2, so I'm a little unique). Launching the foxxmd version, I saw this error on run: fooocus-fox | s6-overlay-suexec: fatal: can only run as pid 1 It turns out this is because I was using init: true in docker-compose.yml. I was doing this so I could close containers quickly, as the signal handling is not correct so containers wait for 10 seconds before they are killed. I'm able to start Fooocus by removing that init/tini proxy process, but now the container takes 10 seconds to close every time.
-
[SUPPORT] - stable-diffusion Advanced
For anyone else who might be a dummy like me and couldn't get SD XL models and Juggernaut working on SD Next, I found I needed to go to System > Settings > Execution backend > change to "diffusers" then restart SD Next. Not sure why I don't have to do this on the AUTOMATIC1111 setup which is a similar program.
-
[SUPPORT] - stable-diffusion Advanced
It would be awesome of the code was in GitHub. It would help in edge cases where we need to add a dependency or something to the container. I know we can do that now, using your image as a base image, but its a little bit harder not knowing exactly how it was built.
-
BigD changed their profile photo
-
[SUPPORT] - stable-diffusion Advanced
Hey, Thanks so much for putting this project together. I'm using it on a Windows box, not even on unraid -- because this is so handy to have so many UIs available in one docker image. I'm also running into the same issue that @FoxxMD is experiencing. Whenever I restart a container, there is a long sequence of installing that needs to occur. Also, specifically with the lama-cleaner UI, I'm noticing that whenever I switch the model from the `lama` model, it downloads the model fine but fails to select it because xformers package is missing: ModuleNotFoundError: Refer to https://github.com/facebookresearch/xformers for more information on how to install xformers Looking at lama-cleaner's Dockerfile https://github.com/Sanster/lama-cleaner/blob/main/docker/GPUDockerfile I wonder if something like this is missing: RUN pip3 install xformers==0.0.22.post4 --index-url https://download.pytorch.org/whl/cu118