volotat / SD-CN-Animation

This script allows to automate video stylization task using StableDiffusion and ControlNet.
MIT License
807 stars 61 forks source link

[BUG]: it's "skimage" NOT "scikit-image" !!! #198

Open illtellyoulater opened 9 months ago

illtellyoulater commented 9 months ago

In install.py you have:

if not launch.is_installed("ffmpeg-python"):
    launch.run_pip("install ffmpeg-python", "Install \"ffmpeg-python\" requirements for TemporalKit extension")

but this is causing "scikit-image" to always be reinstalled, because this is not the way the package is referred to in code. The correct name is "skimage":

if not launch.is_installed("skimage")

Please fix it asap as this is causing environments to break, inconsistencies and so many headaches.

illtellyoulater commented 9 months ago

Actually, this should be addressed in sd-webui instead: https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/13487