In Python 2.5, I import modules by changing environment variables. It works, but using site-packages does not. Is there another way to import modules in directories other
sys.path is a list to which you can append custom paths to search like this:
sys.path
sys.path.append("/home/foo")