如何将 python 3.X GUI 应用程序分发给最终用户?
似乎 Python3.X 没有将 python 应用程序转换为 Mac OS X 上可执行文件的解决方案。因此,我认为最终用户需要解决该问题。您如何将软件/脚本打包给最终用户?有什么建议吗?谢谢。
Seems the Python3.X don't have a solution to convert the python application to executable on Mac OS X. So, I think it requires a work around for end user. How you package your software / script to end user? Any advices? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
迄今为止更好的解决方案是cx_Freeze。它将脚本转换为可执行程序,该程序调用打包到 zip 文件中的 python 编译模块。它的工作原理非常简单,您可以使用其他工具来创建自解压 .exe 文件。 WinRar 本身就有这样的工具,以及许多其他工具。
在这里查看 cx_Freeze 文档:
http://cx-freeze.sourceforge.net/cx_Freeze.html
The better solution so far is cx_Freeze. It converts the script to a executable program which calls the python compiled modules packaged into a zip file. It works pretty simple and you can use other tools to create a self extract .exe file. The WinRar itself has such tool, as well as many others.
Take a look at the cx_Freeze docs here:
http://cx-freeze.sourceforge.net/cx_Freeze.html