Raj Josyula
Raj Josyula

Reputation: 150

How to import *.pyd file python (Linux machine)

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

Answers (1)

mingganz
mingganz

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

Related Questions