Closed liusida closed 7 months ago
This was fixed yesterday, just now I pushed a new image. The checkpoints
folder will leave empty and people will aware.
Models could be downloaded via ComfyUI-Manager or manually from https://civitai.com/ & https://huggingface.co/ & https://www.liblib.art/
Thanks for the quick response.
I think I might need to write my own ./storage/scripts/pre-start.sh
to download whatever I need, right?
Is there a template or example that I can refer to for writing this script?
As mentioned in #28, give a try to megapak
!
But ./storage/scripts/pre-start.sh
can do it too, for example:
#!/bin/bash
echo "[INFO] Downloading my favorite models..."
cd /home/runner/ComfyUI/models
aria2c \
--input-file=/home/runner/scripts/download-my-fav-models.txt \
--allow-overwrite=false \
--auto-file-renaming=false \
--continue=true \
--max-connection-per-server=5
And ./storage/scripts/download-my-fav-models.txt
:
# Comments
https://huggingface.co/playgroundai/playground-v2.5-1024px-aesthetic/resolve/main/playground-v2.5-1024px-aesthetic.fp16.safetensors
dir=checkpoints
out=playground-v2.5-1024px-aesthetic.fp16.safetensors
https://huggingface.co/cagliostrolab/animagine-xl-3.1/resolve/main/animagine-xl-3.1.safetensors?download=true
dir=checkpoints/sdxl
out=animagine-xl-3.1.safetensors
A side note: batch-download from CivitAI sometimes reports error, so I prefer downloading from Huggingface, as you see in download.txt
Cool, thanks~
I've started the docker and headed to the web GUI, but when I press "Queue Prompt", this error shows up:
I realized that the default
SD 1.5
model is not there; instead, the default one isSD 2.1-unclip-small
. I manually downloaded the defaultSD 1.5
, and everything works. So I wonder whySD 2.1-unclip-small
was chosen as the default? And why was I running into such an error?