This is a web tutorial explaining how to install wxPython(3rd link from the list is the version that i have installed).
Also my Python version is Python 2.6.2
Whenever i try to type (according to tutorial)
import wx
app=wx.App()
win=wx.Frame(None)
win.Show()
app.MainLoop()
then save it and run it i receive the following message in GUI Python Shell:
Traceback(most recent call last):
File "E:/Python26/sdf", line 1, in <module>
import wx
File "E:/Python26\wx.py", line 2, in <module>
app=wx.App()
AttributeError: 'module' object has no attribute 'App'
You can also see it in a pic... 
Why is this happening while in the tutorial wxPython works flawlesly???
How i can bypass this problem??
import wxand see if you get the same problem.IDLE, try the command line. Go tocmd/shand typepython>> Enter >>import wx>> Enter. See what happens