py2exe not including the modules from “includes”
问题 I am using the latest version of Anaconda Python (3.4) and latest version of py2exe (which is supposed to support Python 3.3 and 3.4) on Windows 7, 64-bit. Here is the py2exe script I am using: from distutils.core import setup import py2exe, sys, os sys.argv.append('py2exe') setup( options = { 'py2exe': { 'bundle_files': 2, 'optimize': 2, 'compressed': True, } }, windows = [{'script': "ImageSound GUI.py"}], data_files = [('images',['c:/Users/EvilDragon/Documents/GitHub/ImageSound/mario.png'])