The module is hardly in your python search path ..
Check if this module is in your Python path ... On Windows ... you can find it in the registry
HKLM \ Software \ Python \ PythonCore \ 2.6 \ PYTHONPATH
Use caution when editing it ...
You can also programmatically change the Python Path as follows
import sys sys.path.append('somepath_to_the_module_you_wanted') import the_module_you_wanted
Hope that helps
source share