I found a pretty good Docker container for it, though that's only really switching you from solving Python problems to Docker ones. Worth trying out if you have a Linux box or WSL installed though: https://github.com/AbdBarho/stable-diffusion-webui-docker
python 3.10 will fail on openvino.
i used these steps:
anaconda prompt
cd to the destination folder
conda create --name py38 python=3.8
conda activate py38
conda update --all
conda install openvino-ie4py -c intel
pip install -r requirements.txt
i also had to edit stable_diffusion.py and changed in the #decoder area:
changed vae.xml and vae.bin to vae_decoder.xml and vae_decoder.bin respectively
from there i could run
python stable_diffusion.py --prompt "Street-art painting of Emma Stone dancing, in picasso style"
for img2img, use this (note DIFFERENT program):
python demo.py --prompt "astronaut with jetpack floating in space with earth below" --init-image ./data/jomar.jpg --strength 0.5
I found a pretty good Docker container for it, though that's only really switching you from solving Python problems to Docker ones. Worth trying out if you have a Linux box or WSL installed though: https://github.com/AbdBarho/stable-diffusion-webui-docker
python 3.10 will fail on openvino. i used these steps:
anaconda prompt
cd to the destination folder
conda create --name py38 python=3.8
conda activate py38
conda update --all
conda install openvino-ie4py -c intel
pip install -r requirements.txt
i also had to edit stable_diffusion.py and changed in the #decoder area: changed vae.xml and vae.bin to vae_decoder.xml and vae_decoder.bin respectively
from there i could run
python stable_diffusion.py --prompt "Street-art painting of Emma Stone dancing, in picasso style"
for img2img, use this (note DIFFERENT program):
python demo.py --prompt "astronaut with jetpack floating in space with earth below" --init-image ./data/jomar.jpg --strength 0.5
It needs python 3.9.