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.
In install.py you have:
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.