Skip to content Skip to sidebar Skip to footer

How To Generate A Windows Executable Using Pyinstaller On Linux?

I'm trying to generate an executable from Linux for Windows using pyinstaller. pyinstaller --onefile --windowed montecarlo.py I run this command and get a single executable that w

Solution 1:

I was trying to do this same thing today and ran across this answer. It pointed to the FAQ, which says cross-compiling is not supported. It recommends using Wine.


Post a Comment for "How To Generate A Windows Executable Using Pyinstaller On Linux?"