I have recently started learning Python and I have 2 questions relating to modules.
- Is there a way to obtain a list of Python modules available (i.e. installed) on a machine?
- I am using Ubuntu Karmic and Synaptic for package management. I have just installed a python module.Where is the module code actually stored on my machine? (is there a default [recommended] location that modules are stored)?
This works for me:
Usually in
/lib/site-packagesin your Python folder. (At least, on Windows.)You can use
sys.pathto find out what directories are searched for modules.