hi all,<br>i m new to wx python.i found difficulty in making its exe.Although m using the code for exe as:<br>#<br>from distutils.core import setup<br>import py2exe<br>import sys,glob,os<br> <br><br>if len(sys.argv) == 1:<br>
sys.argv.append("py2exe")<br> <br># creates a standalone .exe file, no zip files<br><br>setup( options = {"py2exe": {"compressed": 1, "optimize": 2, "ascii": 1, "bundle_files": 1}},<br>
zipfile = None,<br> windows = [{"script": 'testing gui.py'}] )<br><br><br>but when i clicked gui.exe from dist folder then it raises module error as:<br><br>Traceback (most recent call last):<br>
File "gui.py", line 1, in <module><br> File "zipextimporter.pyo", line 82, in load_module<br> File "wx\__init__.pyo", line 45, in <module><br> File "zipextimporter.pyo", line 82, in load_module<br>
File "wx\_core.pyo", line 4, in <module><br> File "zipextimporter.pyo", line 98, in load_module<br>ImportError: MemoryLoadLibrary failed loading wx\_core_.pyd<br><br><br>Although with the help of this exe code i have generated many exe files(not based on wxpython)<br>
<br>Kindly help me in this regard.ur every suggestion will b honoured.<br>Thanks in advance!<br><br>Marium<br><br>