Skip to content Skip to sidebar Skip to footer

Cx-freeze Error On Build

I keep getting this error when trying to do a build on Win 7 64bit: C:\Users\Tom>python C:\Users\Tom\Documents\setup.py build running build running build_exe copying C:\Users\To

Solution 1:

The full detailed answer is at cx_freeze fails to create exe with pandas library.

The short version is exclude the following files:

'build_exe': {
    'excludes': ['boto.compat.sys',
                 'boto.compat._sre',
                 'boto.compat._json',
                 'boto.compat._locale',
                 'boto.compat._struct',
                 'boto.compat.array'],
}

Post a Comment for "Cx-freeze Error On Build"