I'm using Ubuntu 12, and Python 3.2 (with IDLE 3.2).
When I use the terminal Python interpreter, I can import my 'nester' module, but when I use IDLE, it tells me 'no module named nester' in red letters!
I've tried adding a .pth to site-packages. Also tried sticking
import sys
sys.path.append('/Python-3.2/my_modules')
at the end of site.py.
How on earth do I get IDLE to recognize that my module exists and works perfectly fine?











