-
Notifications
You must be signed in to change notification settings - Fork 67
Open
Description
Attempting to do XFoil() after a successful installation makes ctypes complain that it can't find the temp .dll or dependencies.
I worked around this by adding:
def __init__(self):
super().__init__()
tmp = NamedTemporaryFile(mode='wb', delete=False, suffix=lib_ext)
tmp.close()
self._lib_path = tmp.name
copy2(lib_path, self._lib_path)
os.add_dll_directory(r"C:\Windows\System32")
os.add_dll_directory(r"C:\Users\euana\Documents\Perl\c\bin")
self._lib = cdll.LoadLibrary(self._lib_path)
self._lib.init()
self._airfoil = None
Metadata
Metadata
Assignees
Labels
No labels