Reputation: 150
I've a .pyd file which i'm able to import in windows machine , but unable to import in my linux machine .
Is there a way I can import ?
I don't have the source file for the *.pyd file FYI.
Thanks
Upvotes: 1
Views: 4664
Reputation: 363
.pyd file is basically a windows dll file. Please refer to http://docs.python.org/faq/windows.html#is-a-pyd-file-the-same-as-a-dll
So you can't import it in Linux. You might need a alternative edition for Linux.
Upvotes: 2