我正在尝试使用Py2Exe从python项目生成一个exe。我有适当的代码并在Eclipse中编译。这是一个包含多个文件的项目。 我正在尝试从命令提示符运行命令:
setup.py
这给了我以下错误:
运行py2exe
错误:win64尚不支持bundle-files
我的from distutils.core import setup
import py2exe
import sys
# no arguments
if len(sys.argv) == 1:
sys.argv.append("py2exe")
# creates a standalone .exe file, no zip files
setup( options = {"py2exe":
{"compressed": 1,
"optimize": 2,
# "ascii": 1,
"bundle_files": 2,
"includes" : ["encodings","encodings.*"],
"packages" : ["encodings"]
}
},
zipfile = None,
# replace myFile.py with your own code filename here ...
console = [{"script": 'MyDataScript.py'}] )
脚本是:
UNION
是否有帮助克服它并生成exe?在Windows 64位上。