How can the exe generated by Python run on xp?

tried for a long time, but always prompted that the system was incompatible and told me to determine whether it was 32-bit or 64-bit. I wrote it in win8Python3.6, pyintaller.

Sep.27,2021

xp is only supported to 3.4


Python-> EXE/MSI

pyinstaller/py2exe is not a good tool (there are many bug). You can try cxFreeze, with less problems than the first two. (my former company used this tool to package Python to various platforms to use it out of the box. Users do not need to download the Python interpreter, including various bizarre platforms such as XP/WinServer2003)


xp can only run 32-bit apps. You need to install 32-bit python and then package it with pyinstaller

Menu