From 8010feb4875c59bb187d478130b180842eec1b06 Mon Sep 17 00:00:00 2001 From: do-me <47481567+do-me@users.noreply.github.com> Date: Mon, 23 Jan 2023 13:24:30 +0100 Subject: [PATCH 1/3] Improve installation steps --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a700edf..29e5685 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,8 @@ Implementation of Text-To-Image generation using Stable Diffusion on Intel CPU. ```bash python -m pip install --upgrade pip pip install openvino-dev[onnx,pytorch]==2022.3.0 +git clone https://github.com/bes-dev/stable_diffusion.openvino.git +cd stable_diffusion.openvino pip install -r requirements.txt ``` From 1aa74e4496de88a25290c91ce8670d24fa7eeec7 Mon Sep 17 00:00:00 2001 From: do-me <47481567+do-me@users.noreply.github.com> Date: Mon, 23 Jan 2023 13:32:05 +0100 Subject: [PATCH 2/3] Add conda env to installation instructions --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 29e5685..69c0ef6 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,14 @@ Implementation of Text-To-Image generation using Stable Diffusion on Intel CPU. ## Install requirements +* Set up conda environment * Set up and update PIP to the highest version * Install OpenVINO™ Development Tools 2022.1 release with PyPI * Download requirements ```bash +conda create -n py3.9 python=3.9 +conda activate py3.9 python -m pip install --upgrade pip pip install openvino-dev[onnx,pytorch]==2022.3.0 git clone https://github.com/bes-dev/stable_diffusion.openvino.git From b1dba1c8e279af9ad9786462ebf8cbbf0a79a52a Mon Sep 17 00:00:00 2001 From: do-me <47481567+do-me@users.noreply.github.com> Date: Mon, 23 Jan 2023 13:34:58 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 69c0ef6..56d369c 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Implementation of Text-To-Image generation using Stable Diffusion on Intel CPU. ## Install requirements -* Set up conda environment +* Set up conda environment (optional) * Set up and update PIP to the highest version * Install OpenVINO™ Development Tools 2022.1 release with PyPI * Download requirements