Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ImportError: cannot import name 'StableDiffusionPipeline' from 'diffusers'

ImportError : Traceback (most recent call last) Input In [96],

in <cell line: 3>()

1 import torch

2 from torch import autocast

----> 3 from diffusers import StableDiffusionPipeline

ImportError: cannot import name 'StableDiffusionPipeline' from 'diffusers' (E:\Py\env\lib\site-packages\diffusers_init_.py)

i've installed diffusers latest version. how do i solve this?

like image 358
niyar Avatar asked Sep 18 '25 19:09

niyar


1 Answers

Reinstalling diffusers solves the problem for me.

pip uninstall diffusers
pip install diffusers
like image 115
Zhu Xiaohu Avatar answered Sep 20 '25 10:09

Zhu Xiaohu