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
I have been experiencing this error in these lines of the code, could you tell how to get around it, please?
file_name = 'dcontinpals.dll'
__dllPtr = cdll.LoadLibrary(file_name)
Could not find module 'dcontinpals.dll' (or one of its dependencies). Try using the full path with constructor syntax.
I have also tried to use os to get full path but it didn't work
The text was updated successfully, but these errors were encountered:
I have experienced the same problem, even with simpler code, just to load any other .dll. This documentation on ctypes does not show the same error with loading dynamic link libraries
(LoadLibrary()), but there is a way to debug what is going on:
I have been experiencing this error in these lines of the code, could you tell how to get around it, please?
file_name = 'dcontinpals.dll'
__dllPtr = cdll.LoadLibrary(file_name)
Could not find module 'dcontinpals.dll' (or one of its dependencies). Try using the full path with constructor syntax.
I have also tried to use os to get full path but it didn't work
The text was updated successfully, but these errors were encountered: