Python 2.7 Cx_Freeze: ImportError: No module named __startup__
I am trying to compile a hello world program in Python into a stand-alone binary/package on Linux using cx_Freeze. When cx_Freeze is run, it completes without an error but when I attempt to run the generated executable, I am given the error: ImportError: No module named __startup__ My setup.py file is: from cx_Freeze import setup, Executable # Dependencies are automatically detected, but it might need # fine tuning. buildOptions = dict(packages = [], excludes = []) base = 'Console' executables = [ Executable('test.py', base=base) ] setup(name='test', version = '1.0', description = '', options