I ran this setup.py file
from distutils.core import setup
import py2exe, sys, os
sys.argv.append('py2exe')
setup(
options = {'py2exe': {'bundles_files': 1}},
windows = [{'script': "Driverscript.py"}],
zipfile = None,
)
This creates the executable file and packages but it wont run every time i try to run it it says that it encountered an error and had to close every time. Is there something else i need to do first or something wrong with my setup.py file? all input is greatly appreciated thanks