Create single python executable module

∥☆過路亽.° 提交于 2019-11-30 07:39:34

For windows use py2exe , for linux use pyinstaller and for Mac use py2app

Using these tools you can have a setup.py which based on os will build the final binary.

I have tried all three and they work well, or you can use cx_freeze they claim to be cross-platform

Maybe py2exe can help you ..

py2exe is a Python Distutils extension which converts Python scripts into executable Windows programs, able to run without requiring a Python installation.

Tutorial > http://www.py2exe.org/index.cgi/Tutorial

You can kivy for python cross plat form application .

Kivy - Open source Python library for rapid development of applications that make use of innovative user interfaces, such as multi-touch apps

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!