From 75a8c61bda716640cb7934e5ff692fe5d1f00d21 Mon Sep 17 00:00:00 2001 From: novarobot <88540431+novarobot@users.noreply.github.com> Date: Thu, 23 Mar 2023 01:44:12 +0100 Subject: [PATCH] Update README.md Solved missing folder error --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 87d695f..7e8c3b3 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,7 @@ https://huggingface.co/CompVis/stable-diffusion-v-1-4-original ``` wget https://huggingface.co/CompVis/stable-diffusion-v-1-4-original/resolve/main/sd-v1-4.ckpt +mkdir -p ./stable-diffusion-cpuonly/models/ldm/stable-diffusion-v1/ mv sd-v1-4.ckpt ./stable-diffusion-cpuonly/models/ldm/stable-diffusion-v1/model.ckpt ``` @@ -107,6 +108,7 @@ https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.3.pth ``` wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.3.pth +mkdir -p ./stable-diffusion-cpuonly/src/gfpgan/experiments/pretrained_models/ mv GFPGANv1.3.pth ./stable-diffusion-cpuonly/src/gfpgan/experiments/pretrained_models/GFPGANv1.3.pth ``` @@ -128,7 +130,7 @@ zsh # if not, the prompt starts with (sdco) conda activate sdco -python ./webui.py --no-half +GRADIO_SERVER_NAME=0.0.0.0 && python ./webui.py --no-half ```