Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我启动程序的一部分(使用 os.listdir() 的打开文件夹程序)时,py2exe崩溃。一切都在 python shell 中工作,但在exe中使用时失败。我没有收到任何错误,在exe中,它只是崩溃了。我需要在我的设置中添加什么?
这是我的设置:
from distutils.core import setup import py2exe setup(console=['drbOSbeta0.35(unfinished).py'])
更改文件名:
setup(console=['drbOSbeta0.35(unfinished).py'])
像这样
setup(console=['drbOSbeta0_35_unfinished.py'])
而不是再试一次。