py2exe - “The following modules appear to be missing”

耗尽温柔 提交于 2019-12-06 12:27:28
thecreator232

I, think the problem is that you are using the window option rather than the console option for a console application. For any further issues related to py2exe you may refer this Link.

Use this code to build your .exe:

from distutils.core import setup
import py2exe

setup(console=['Test.py'])
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!