- 论坛徽章:
- 0
|
错误提示:
Traceback (most recent call last):
File "qnyxinfo.py", line 4, in <module>
File "zipextimporter.pyo", line 82, in load_module
File "wx\__init__.pyo", line 45, in <module>
File "zipextimporter.pyo", line 82, in load_module
File "wx\_core.pyo", line 4, in <module>
File "zipextimporter.pyo", line 98, in load_module
ImportError: MemoryLoadLibrary failed loading wx\_core_.pyd
setup.py文件
- #-*-coding=cp936-*-
- from distutils.core import setup
- import py2exe
- includes = ["encodings", "encodings.*"]
- options = {"py2exe":
- { "compressed": 1,
- "optimize": 2,
- "includes": includes,
- "bundle_files": 1
- }
- }
- setup(
- version = "0.1.0",
- description = ""
- name =""
- options = options,
- zipfile=None,
- windows=[{"script": "qnyxinfo.py",}],
- )
复制代码
请帮忙看下,谢谢。 |
|