We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
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:
The text was updated successfully, but these errors were encountered: