I have a new 64-bit Windows machine and use python for various things and so would prefer to install 64-bit python.
However, one of my python projects creates a Windows executable that is then run on a 32-bit Windows machine (created using py2exe).
How do I use 64-bit python and py2exe to create a 32-bit executable?
If I can't do that, I guess my choices are:
Use 32-bit python on all machines including mine; or
Install python on the 32-bit machines and don't use py2exe.
Any advice much appreciated.