I converted my gui.py to gui.exe with py2exe, but it works only on windows 8 64 bit, when I tried it on win7 32 bit , it won't work
this code that converted .py to .exe
from distutils.core import setup
import py2exe
setup(console=['gui.py'])
any way to convert .py to .exe that works on all windows operating systems ...?