I would like to import a dll file under Ubuntu 20.04 in Python 3.8.
I tried it with mono and pythonnet as it was recommended in another answer:
import clr
clr.AddReference(dll_path)
import image3dAPI
but I got the following error:
Invalid Image
If I check the dll with mono:
$ monop -r Image3dLoaderGe.dll
It says:
Could not load Image3dLoaderGe.dll
Is there any other way to use this dll under Linux (even if it is not an "Assembly DLL file")?
I read about WineHQ, but I didn't find any sample code where they did something similar.