On one machine I was able to do a fully automated install as follows
python3 -m venv openvino_env source openvino_env/bin/activate python -m pip install --upgrade pip pip install openvinoNow clone and install the Stable Diffusion Open Vino repo
git clone https://github.com/bes-dev/stable_diffusion.openvino cd stable_diffusion.openvino pip install -r requirements.txtTo run activate the env
source openvino_env/bin/activate test with: python -c "from openvino.runtime import Core"If there are no errors, should be ready to run.
On another machine I needed to to the OpenVino more manually, but I did not need to clone the repo at https://github.com/openvinotoolkit/openvino, instead I needed used the instructions at the install page and downloaded the repo and manually copied it from here then copied it to openvino_2022. Then setting up the environment
source setupvars.shThen I was able to run from stable_diffusion.vino on that machine.
Phew !