Create a directly-executable cross-platform GUI app using Python

前端 未结 12 2167
予麋鹿
予麋鹿 2020-11-22 10:52

Python works on multiple platforms and can be used for desktop and web applications, thus I conclude that there is some way to compile it into an executable for Mac, Windows

12条回答
  •  粉色の甜心
    2020-11-22 11:39

    Another system (not mentioned in the accepted answer yet) is PyInstaller, which worked for a PyQt project of mine when py2exe would not. I found it easier to use.

    http://www.pyinstaller.org/

    Pyinstaller is based on Gordon McMillan's Python Installer. Which is no longer available.

提交回复
热议问题