I have some windows ddl (no idea where they come from), and I would like to use them in a Python script running on Ubuntu. Does someone know if it is possible?
Asked
Active
Viewed 225 times
2 Answers
0
DLL libraries are very OS dependent, so that library built for windows cannot possibly work in unix like OS.
Ive use WINE for this type work.
More friendly Wine based platform CrossOver, Ive use it for MacOS
Its already discussed at Stack

Timur U
- 415
- 2
- 14
-
Thanks @TimurU, Could you please tell me where can I find a tutorial or a guide regarding the use of dll with WINE? Looking around I found this github repo https://github.com/taviso/loadlibrary that seems to solve the problem. Have you seen this before? – Polivicio Oct 08 '20 at 12:33
0
To use Windows DLLs inside a linux environment, you need an platform like WINE. It converts Win32 API calls to POSIX calls on the fly.

Wasif
- 14,755
- 3
- 14
- 34
-
Thansk @Wasif Hasan Do you know a tool to directly use these POSIX calls in python or matlab script? – Polivicio Oct 08 '20 at 12:35