I would like to get a list of Python modules, which are in my Python installation (UNIX server).
How can you get a list of Python modules installed in your computer?
|
|
in a Python shell/prompt. |
|||||||||||||||||
|
|
Now, these methods I tried myself, and I got exactly what was advertised: All the modules. Alas, really you don't care much about the stdlib, you know what you get with a python install. Really, I want the stuff that I installed. What actually, surprisingly, worked just fine was:
Which returned:
I say "surprisingly" because the package install tool is the exact place one would expect to find this functionality, although not under the name 'freeze' but python packaging is so weird, that I am flabbergasted that this tool makes sense. Pip 0.8.2, Python 2.7. |
|||||||||||||
|
|
||||
|
|
|
I ran into a custom installed python 2.7 on OS X. It required X11 to list modules installed (both using help and pydoc). To be able to list all modules without installing X11 I ran pydoc as http-server, i.e.:
Then it's possible to direct Safari to |
|||
|
|
|
I just use this to see currently used modules:
which shows all modules running on your python. For all built-in modules use:
|
|||||||||||||||
|
|
Very simple searching using pkgutil.iter_modules
|
|||
|
|
|
Aside from using 'pip freeze' I have been installing yolk (http://pypi.python.org/pypi/yolk) in my virtual environments. |
|||
|
|
|
From the shell
If that's not helpful, you can do this.
And see what that produces. |
|||||||||||||
|