You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: