[root@zetawiki ~]# pip list
distribute (0.6.10)
Django (1.6.5)
Flask (0.10.1)
iniparse (0.3.1)
...
[root@zetawiki ~]# pip freeze
Django==1.6.5
Flask==0.10.1
Jinja2==2.7.3
...
[root@zetawiki ~]# python -c 'import pip,pprint; pprint.pprint(pip.get_installed_distributions())'
[MySQL-python 1.2.3 (/usr/lib64/python2.6/site-packages/MySQL_python-1.2.3-py2.6-linux-x86_64.egg),
Flask 0.10.1 (/usr/lib/python2.6/site-packages/Flask-0.10.1-py2.6.egg),
itsdangerous 0.24 (/usr/lib/python2.6/site-packages/itsdangerous-0.24-py2.6.egg),
Jinja2 2.7.3 (/usr/lib/python2.6/site-packages/Jinja2-2.7.3-py2.6.egg),
...
[root@zetawiki ~]# pydoc modules
Please wait a moment while I gather a list of all available modules...
BaseHTTPServer ast imp shlex
Bastion asynchat importlib shutil
CDROM asyncore imputil signal
... (생략)
anydbm ihooks sgmllib
argparse imaplib sha
array imghdr shelve
Enter any module name to get more help. Or, type "modules spam" to search
for modules whose descriptions contain the word "spam".
[root@zetawiki ~]# python -c 'help("modules")'
Please wait a moment while I gather a list of all available modules...
ANSI bisect io screen
BaseHTTPServer bsddb itertools select
Bastion bz2 itsdangerous sets
... (생략)