py2exe 崩溃,这是一个使用os.listdir()的打开文件夹程序。一切都在python shell中工作,但在 exe 中使用时失败。 我没有得到任何错误,在 exe 中,它只是崩溃了。我需要在设置中添加什么内容?
这是我的设置:
from distutils.core import setup
import py2exe
setup(console=['drbOSbeta0.35(unfinished).py'])
答案 0 :(得分:0)
更改文件名:
setup(console=['drbOSbeta0.35(unfinished).py'])
这样的事情
setup(console=['drbOSbeta0_35_unfinished.py'])
再试一次。