<div>Hai to all,</div>
<div>&nbsp;</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I installed ActivePython-2.4.1-247-win32-ix86 and wxPython2.6-win32-ansi-2.6.2.1-py2 in my system. When i Run a wxPython example.. geeting an Errors</div>
<div>&nbsp;</div>
<div>Traceback (most recent call last):<br>&nbsp; File &quot;E:\Python24\Lib\site-packages\pythonwin\pywin\framework\scriptutils.py&quot;, line 310, in RunScript<br>&nbsp;&nbsp;&nbsp; exec codeObject in __main__.__dict__<br>&nbsp; File &quot;F:\python\wx.py&quot;, line 1, in ?
<br>&nbsp;&nbsp;&nbsp; from wxPython.wx import *<br>&nbsp; File &quot;E:\Python24\lib\site-packages\wx-2.6-msw-ansi\wxPython\__init__.py&quot;, line 10, in ?<br>&nbsp;&nbsp;&nbsp; import _wx<br>&nbsp; File &quot;E:\Python24\lib\site-packages\wx-2.6-msw-ansi\wxPython\_wx.py
&quot;, line 3, in ?<br>&nbsp;&nbsp;&nbsp; from _core import *<br>&nbsp; File &quot;E:\Python24\lib\site-packages\wx-2.6-msw-ansi\wxPython\_core.py&quot;, line 15, in ?<br>&nbsp;&nbsp;&nbsp; import wx._core<br>&nbsp; File &quot;F:\python\wx.py&quot;, line 1, in ?
<br>&nbsp;&nbsp;&nbsp; from wxPython.wx import *<br>ImportError: No module named wx</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>Program Code:</div>
<div>&nbsp;</div>
<div>
<p>from wxPython.wx import *</p>
<p>class MyApp(wxApp):<br>&nbsp;&nbsp;&nbsp; def OnInit(self):<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; frame = wxFrame(NULL, -1, &quot;Hello from wxPython&quot;)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; frame.Show(true)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; self.SetTopWindow(frame)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return true</p>
<p>app = MyApp(0)<br>app.MainLoop()<br></p></div>