Im sorry to ask this question again. I have searched and found endles repeats of it both on stackoverflow and also on general google search. Unfortunatly I just cant get my system sorted.

I have the following:

C:\Python27\Lib\site-packages\wx-2.8-msw-unicode

this folder contains the wx folder and also wx & wxPython folders which each contain the _init_.py files

When I import wx I get the error message "no module named wx"

What do I need to do in order to get Python to find the relevant files to allow me to "import wx" succesfully

link|improve this question

60% accept rate
"When I import wx I get the error message" -> where are you doing the import step (i.e. please provide more details) and are you sure that you're using Python2.7 when you do the import (I'm wondering if your default Python is another version)? – sgallen Dec 22 '11 at 21:07
I have been running that code on the IDLE Python GUI >>> import wx Traceback (most recent call last): File "<pyshell#10>", line 1, in <module> import wx ImportError: No module named wx – Luke Bream Dec 22 '11 at 21:14
My Python Version is 2.7.2 – Luke Bream Dec 22 '11 at 21:18
Can you import other modules? Only wx fails ?. If this is the case, is there a wx.pth file in your site-packages folder ? – joaquin Dec 22 '11 at 21:36
1  
Ops! what you describe is the correct setup... It should work... Did you installed from a binary from the official wxpython site? What was the name of if ? A different question, can you import wx from a python shell open in the windows console (instead of from idle). – joaquin Dec 22 '11 at 22:03
show 4 more comments
feedback

1 Answer

Generally, package names in the site-packages folder are intended to be imported using the exact name of the module or subfolder.

If my site-packages folder has a subfolder named "foobar", I would import that package by typing import foobar.

One solution might be to rename site-packages\wx-2.8-msw-unicode to site-packages\wx.

Or you could add C:\Python27\Lib\site-packages\wx-2.8-msw-unicode to your PYTHONPATH environment variable.

link|improve this answer
1  
please, don't do that, the name is correct. If you installation has been done properly there should be a file wx.pth in site-packages pointing to that folder name. – joaquin Dec 22 '11 at 21:30
Hi....I have checked the site-packages folder and I do have the wx.pth file present....and it contains the follwoing single line wx-2.8-msw-unicode any suggestions for sorting this would be really appreciated ! – Luke Bream Dec 22 '11 at 21:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.