Can i run py2app on windows?

I recently discovered that an outdated version of Python made my Wx application fail.

I can’t install Python 2.7.3 on my Mac, and when I tried it on a virtual machine, py2app still “compiled” the application after working overnight (I have a ≈1 GHz processor on Windows / Linux).

Is there a version of py2app that works on Windows?

+8
python windows py2app
source share
1 answer

On the page and readme, py2app aims to create Mac applications for python code. Obviously, you cannot run the final product on a Windows machine. But if the question is whether you can create an application on Windows and run it on a Mac, then there is still no answer, because if you go to setup.py , it says 'Operating System :: MacOS :: MacOS X' , and there are no forks for windows, because it depends on some Mac SDK tools, such as /Developer/SDKs/MacOSX10.5.sdk . You seem unlucky. If you are desperate, try Virtual Block to emulate the Mac on your Windows machine or be happy with creating windows using py2exe

+8
source share

All Articles