Can I make a 32-bit program with cx_Freeze if I have a 64-bit OS?
I am currently running Windows 7 Home 64-bit and am working on a program that I would like to make available for both 32-bit and 64-bit Windows operating systems. When I use cx_Freeze to turn my .py to a .exe, it only allows it to be installed on 64-bit operating systems. Would I need to buy a 32-bit computer to convert it to a 32-bit program or are there a special set of commands I can use to make cx_Freeze create both a 32-bit and a 64-bit exe? from cx_Freeze import * import sys base = None if sys.platform == 'win32': base = "Win32GUI" executables = [Executable("iNTMI.py", shortcutName =