有没有人知道如何在没有黑色控制台的情况下使用py2exe运行exe?并将所有pyd文件等捆绑到一个exe文件中?
答案 0 :(得分:1)
对于一个exe文件,请使用此设置(取自this answer):
from distutils.core import setup
import py2exe, sys, os
sys.argv.append('py2exe')
setup(
options = {'py2exe': {'bundle_files': 1, 'compressed': True}},
windows = [{'script': "single.py"}],
zipfile = None,
)
答案 1 :(得分:1)
from distutils.core import setup
import py2exe, sys, os
sys.argv.append('py2exe')
setup(
windows = [{'script': "pytho.py"}],
)
为py2exe x64支持编辑 64位没有压缩
使用:python 2.7 amd64