exec85
exec85

Reputation: 487

pyinstaller generate exe on mac

Is there a way to compile a .py file +additional data MAC to a .exe?

auto-py-to-exe is working great when I do in on my windows laptop.

But I often work on mac when I am not at home and need to compile my .py + some other folders and files to .exe

But when I try it on MAC I always only get a MAC executable file, not for windows.

Is there a workaround for that?

Upvotes: 2

Views: 4068

Answers (1)

buran
buran

Reputation: 14218

from pyinstaller FAQ section

Can I package Windows binaries while running under OS X? No, this is not supported. Please try Wine for this.

Upvotes: 1

Related Questions