If I want to use a 3rd party module like a python s3 module (boto http://boto.s3.amazonaws.com/index.html) or http://developer.amazonwebservices.com/connect/entry.jspa?externalID=134.
Once I download the .py files, what do I do?
Where does the python interpreter look when I import a module?
Is there a ‘lightweight’ way of installing a module so it makes deploying to a server easier?
Look in the import statement reference, a long and involved description.
The simple method is to include the module’s location in
sys.path.I’m quoting the starting paragraph only: