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
with os.add_dll_directory(os.getcwd()): before any code that imports dlls, or something similar (maybe os.path.dirname(microscope.__file__) instead of os.getcwd()?)
https://bugs.python.org/issue43173
This can be fixed with a simple:
with os.add_dll_directory(os.getcwd()):before any code that imports dlls, or something similar (maybeos.path.dirname(microscope.__file__)instead ofos.getcwd()?)