How to compile a Python desktop application for Windows with PyInstaller?
The problem is the difference of architectures, I'm using PyInstaller to generate an EXE from the x64 architecture when executing it in x86 it tells me that there is an error in the architectures and it can not be executed.
The documentation of PyInstaller says that it is not possible to generate the EXE from different Operating Systems, therefore, it is not possible if it is not the same environment.
Does anyone know of any alternative to the solution?
Reinstalling an operating system for each architecture or operating system on each machine installing Python and PyInstaller (where necessary) does not seem a viable option.