如何将 python 3.X GUI 应用程序分发给最终用户?

发布于 2024-12-17 08:35:25 字数 105 浏览 0 评论 0原文

似乎 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赤濁 2024-12-24 08:35:25

迄今为止更好的解决方案是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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文