Can’t import dll module in Python

Starting with Python 3.8, the .dll search mechanism has changed (Win specific). According to [Python.Docs]: os.add_dll_directory(path) (emphasis is mine): Add a path to the DLL search path. This search path is used when resolving dependencies for imported extension modules (the module itself is resolved through sys.path), and also by ctypes. … Availability: Windows. So, you … Read more