为另一个架构分发 python 模块

发布于 2024-10-01 09:52:39 字数 234 浏览 4 评论 0原文

我想知道如何使用 64 位 cx_freeze 创建 32 位二进制文​​件。我查看了主页,但找不到一个设置来告诉它什么构建的架构。

我正在运行 32 位(否则 PyQt 将无法工作)Python 2.6,因此依赖项应该已经是 32 位,在 64 位 Kubuntu 10.10 上。

I'm wondering how I can create a 32-bit binary with my 64bit cx_freeze. I've looked at the homepage and I can't find a setting to tell it what architecture to build for.

I'm running 32bit(otherwise PyQt won't work) Python 2.6, so the dependencies should already be 32bit, on 64bit Kubuntu 10.10.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

歌入人心 2024-10-08 09:52:39

如果您使用的是 Windows 或 Mac,则可以分别使用 py2exepy2app。我认为 freeze 可能 是一个更通用的解决方案,可能适用于你。

If you were using Windows or a Mac, then you could use py2exe or py2app, respectively. I think that freeze may be a more general solution that may work for you.

三人与歌 2024-10-08 09:52:39

Maybe this link will help you: http://linux.die.net/man/8/linux32
Otherwise you can create a x32 virtual machine by using QEmu or VirtualBox...

向日葵 2024-10-08 09:52:39

我有一个 pyqt 项目,在将其开源发布之前,我曾经为该项目分发冻结的应用程序,适用于 win/linux/osx。

我使用了以下内容:

  • 用于 linux 的 Pyinstaller 用于
  • osx 的 Py2app 用于
  • Windows 的 Py2exe

http://www.pyinstaller.org/

I have a pyqt project for which I used to distribute frozen apps before just releasing it open source, for win/linux/osx.

I used the following:

  • Pyinstaller for linux
  • Py2app for osx
  • Py2exe for windows

http://www.pyinstaller.org/

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