可以在 Ubuntu 中使用 cx-freeze 将 python 脚本冻结为 Windows 可执行文件吗?
当我在 Ubuntu 中使用 cxfreeze 时,它会自动将 python 脚本编译为 Linux 可执行文件。我广泛地浏览了文档,但找不到将脚本冻结为 .exe 以便在 Windows 计算机上运行程序的方法。这可以吗——?
When I use cxfreeze in Ubuntu, it automatically compiles the python script to a Linux executable. I've looked through the documentation extensively, and I can't find a way to freeze the script into a .exe for the purposes of running the program on a Windows machine. Can this be done-?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以这样做......但是你必须安装 Wine (apt-get install wine),然后在 Wine 中安装 Windows 版本的 Python 以及你的应用程序需要的所有 python 库,然后你就可以将您的脚本冻结为 ubuntu 框中 Windows 的 exe。
You can do that.... but you'll have to install Wine (apt-get install wine) and then install in Wine the windows version of Python and all the python libraries your application needs, and then you'll be able to freeze your script into an exe for windows in your ubuntu box.