I have been developing an application using Python 3.3 and PyQt4 and I would like to be able to distribute it as a standalone app. My development environment is OS X and I have been able to create a standalone OS X app using cx_Freeze and py2app.

My question is, how would I go about creating an executable file for windows, considering I do not have access to a Windows operating system for development?

I have tried using cx_Freeze's build_exe on OS X and running it on windows but it will not run.

Thanks in advance :)

有帮助吗?

解决方案

I use pyinstaller to create stand alone exe for windows. http://www.pyinstaller.org/.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top