os模块启动时py2exe exe崩溃

时间:2013-05-09 16:26:44

标签: python py2exe

当我启动程序的一部分时,

py2exe 崩溃,这是一个使用os.listdir()的打开文件夹程序。一切都在python shell中工作,但在 exe 中使用时失败。 我没有得到任何错误,在 exe 中,它只是崩溃了。我需要在设置中添加什么内容?

这是我的设置:

from distutils.core import setup
import py2exe

setup(console=['drbOSbeta0.35(unfinished).py'])

1 个答案:

答案 0 :(得分:0)

更改文件名:

setup(console=['drbOSbeta0.35(unfinished).py'])

这样的事情

setup(console=['drbOSbeta0_35_unfinished.py'])

再试一次。