How to stop Python program compiled in py2exe from displaying ImportError: No Module names 'ctypes'

折月煮酒 提交于 2019-11-29 12:38:28

This is caused by a bug in py2exe, it'll be fixed in next release. More Info

The solution is to add ctypes to bootstrap_modules in C:\Python34\Lib\site-packages\py2exe\runtime.py file (line 117).

...
# modules which are always needed
bootstrap_modules = {
    # Needed for Python itself:
    "ctypes",
    "codecs",
    "io",
    "encodings.*",
    }
...
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!