How to create a Mac OS X app with Python?

前端 未结 11 1509
清酒与你
清酒与你 2020-12-12 18:07

I want to create a GUI application which should work on Windows and Mac. For this I\'ve chosen Python.

The problem is on Mac OS X.

There are 2 tools

11条回答
  •  不思量自难忘°
    2020-12-12 18:40

    PyInstaller will automatically create bundles under Mac OSX for windowed executables. When running ypinstaller.py, make sure to pass the option "--windowed".

    This feature is documented in the website of pyinstaller

提交回复
热议问题