ValueError: numpy.dtype size changed, may indicate binary incompatibility
My apologies if this is a complete nonissue in the end but I ran into the following error after trying to start my notebook on Paperspace. I had just finished one 6-hour session that I started earlier today. I guess something must have updated somewhere during this time? Thank you beforehand for any advice
Traceback (most recent call last):
File "/notebooks/stable-diffusion-webui-forge/webui.py", line 19, in
I don't see any problem on a clean installation. Does this happen when launching the webui or when generating images? According to the error, it is likely because the installed version of numpy is not compatible. Currently numpy is at 1.26.2. Maybe because some extensions are interfering. What extensions did you install ?
You can try running this code on the console to check the installed numpy after encountering the error.
!python -c "import numpy; print(numpy.__version__)"
solution yet?