hugging_face_hub
I always run into a hugging face hub error... can you help me figure out why and what is wrong with huggingface hub and docker?
Have you tried downgrading to huggingface-hub==0.25.2?
When building realtime-img2img demo I added the following two lines to requirements.txt
numpy==1.26.4 huggingface_hub==0.25.2
Prevents numpy 2 and latest version of huggingface_hub from being pulled in automatically as dependencies
I submitted a PR that should fix this - https://github.com/cumulo-autumn/StreamDiffusion/pull/184 . It's a conservative change; it just extends the valid diffusers version range from ==0.24.0 to 0.24.0 - 0.29.0. (0.29.0 is compatible with newer versions of huggingface_hub)
When building realtime-img2img demo I added the following two lines to requirements.txt
numpy==1.26.4 huggingface_hub==0.25.2
Prevents numpy 2 and latest version of huggingface_hub from being pulled in automatically as dependencies
It worked for me