Distributing python modules for a different architecture

I am wondering how I can create 32bit binary with my 64bit cx_freeze. I looked at the homepage and I can’t find a parameter to tell him what to build the architecture for.

I am running 32bit (otherwise PyQt will not work) Python 2.6, so the dependencies should already be 32-bit, on 64-bit Kubuntu 10.10.

+3
source share
3 answers

If you used Windows or Mac, you can use py2exeor py2app, respectively. I think that the freeze may be a more general solution that might work for you.

0

, : http://linux.die.net/man/8/linux32 x32 QEmu VirtualBox...

0

I have a pyqt project for which I used distribution of frozen applications before just letting go of it with open source code for win / linux / osx.

I used the following:

  • Pyinstaller for linux
  • Py2app for osx
  • Py2exe for Windows

http://www.pyinstaller.org/

0
source

Source: https://habr.com/ru/post/1773716/


All Articles