import kivymd
success.
from kivymd.app import MDApp
fail.
sdl2 - ImportError: DLL load failed: Le module spécifié est introuvable.
And I can't "catch this Exception" with:
try:
from kivymd.app import MDApp
except Exception as e:
print(e)
Why am I not blocked on the big import ?
Why can't I catch this Exception ?
What should I do to prevent this kind of error ?
Should I create a ticket in the kivymd Github repository ? (if a library need dependencies, the library should download it itself by default no ?)