stable-diffusion-webui icon indicating copy to clipboard operation
stable-diffusion-webui copied to clipboard

[Bug]: won't produce picteres anymore

Open Kwisss opened this issue 2 years ago • 2 comments

Is there an existing issue for this?

  • [X] I have searched the existing issues and checked the recent builds/commits

What happened?

Since today I only get pictures filled with 1 color

Steps to reproduce the problem

  1. Go to text2img, and use any model
  2. Press generate with any prompt
  3. get 1 color

What should have happened?

there should have been a picture

Commit where the problem happens

commit: 22bcc7be  •  checkpoint: fc2511737a

What Python version are you running on ?

Python 3.9.x (below, no recommended)

What platforms do you use to access the UI ?

Windows

What device are you running WebUI on?

Nvidia GPUs (GTX 16 below)

What browsers do you use to access the UI ?

Mozilla Firefox

Command Line Arguments

no

List of extensions

none, all disabled

Console logs

To create a public link, set `share=True` in `launch()`.
Startup time: 9.3s (import torch: 1.4s, import gradio: 1.1s, import ldm: 0.5s, other imports: 1.0s, load SD checkpoint: 4.3s, create ui: 0.8s).
100%|████████████████████████████████████████████████████████████████████████████████████| 5/5 [00:10<00:00,  2.12s/it]
Total progress: 100%|████████████████████████████████████████████████████████████████████| 5/5 [00:15<00:00,  3.15s/it]

Additional information

No response

Kwisss avatar Jun 18 '23 18:06 Kwisss

commit: 22bcc7b

That's almost three months old, you might try updating. Run git pull, and delete the venv folder so it installs the updated dependencies.

Python 3.9.x

Uninstall that and install Python 3.10.

missionfloyd avatar Jun 19 '23 04:06 missionfloyd

Just put the git pull in the webui-user.bat... example:

[...]
set COMMANDLINE_ARGS= --xformers --no-half-vae --api
git pull
call webui.bat

steamrick avatar Jun 19 '23 14:06 steamrick

You might as well update unless you need to keep the older version.

This could be a dependency update that happened during webui startup, which was unpinned to a specific version, such as fastapi

It could also be caused by installing a new extension with a dependency that clashed in some way with webui.

Earlier versions of webui have "bricked" themselves on startup because of the fastapi upgrade. If you want to avoid updating the dependencies, you either use --skip-install (skip potential upgrades to dependency on startup) or when starting the program just temporarily turn off Ethernet :l

ClashSAN avatar Jun 25 '23 20:06 ClashSAN