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(&quot;py2exe&quot;)<br> <br># creates a standalone .exe file, no zip files<br><br>setup( options = {&quot;py2exe&quot;: {&quot;compressed&quot;: 1, &quot;optimize&quot;: 2, &quot;ascii&quot;: 1, &quot;bundle_files&quot;: 1}},<br>
       zipfile = None,<br>       windows = [{&quot;script&quot;: &#39;testing gui.py&#39;}] )<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 &quot;gui.py&quot;, line 1, in &lt;module&gt;<br>  File &quot;zipextimporter.pyo&quot;, line 82, in load_module<br>  File &quot;wx\__init__.pyo&quot;, line 45, in &lt;module&gt;<br>  File &quot;zipextimporter.pyo&quot;, line 82, in load_module<br>
  File &quot;wx\_core.pyo&quot;, line 4, in &lt;module&gt;<br>  File &quot;zipextimporter.pyo&quot;, 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>