开发者

Make a py2exe exe run without a console?

开发者_运维问答Does anyone know how to make an exe with py2exe run without the black console? and bundle up all the pyd files etc into just one exe file?


For one exe file, use this setup (taken from 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,
)


from distutils.core import setup
import py2exe, sys, os

sys.argv.append('py2exe')

setup(
    windows = [{'script': "pytho.py"}],
)

edited for py2exe x64 support 64-bit does not have zipping

using: python 2.7 amd64

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜