Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

8 Answers

up vote 176 down vote accepted
help('modules')

in a Python shell/prompt.

share|improve this answer
I get such a warning: FutureWarning: apt API not stable yet warnings.warn("apt API not stable yet", FutureWarning). I did not get a list of Python modules. I am using Python 2.5. – Masi Apr 11 '09 at 13:05
Could you paste the entire warning at for example paste.pocoo.org and post the link here? – ChristopheD Apr 11 '09 at 13:11
23  
Also pydoc modules from the shell should work. – dF. Apr 11 '09 at 13:20
2  
@dF pydoc modules works. You should submit it as an answer. – Abizern Apr 11 '09 at 13:30
2  
Gave me a seg fault! – zanbri Jan 17 at 23:54
show 9 more comments

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:

pip freeze

Which returned:

Fabric==0.9.3
apache-libcloud==0.4.0
bzr==2.3b4
distribute==0.6.14
docutils==0.7
greenlet==0.3.1
ipython==0.10.1
iterpipes==0.4
libxml2-python==2.6.21

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.

share|improve this answer
This package is just what I was looking for! Thank you! ;D – Jayme Jan 19 '11 at 16:42
1  
IS there an equivalent command in Windows for this? – Arash Sep 19 '11 at 16:57
I guess the idea behind the name is that you get a "frozen" snapshot of what is installed right now, which you can later feed back into pip to get exactly the same modules installed in a different environment. – Ryan Thompson Dec 16 '11 at 1:25
Arash, you can install pip in Windows too! First install setuptools and then use easy_install to install pip :) – Steve Moss May 8 '12 at 10:02
This is excellent, but it seems to miss some of the libraries I installed. For example, it doesn't list PyQt. – Junuxx Jun 2 '12 at 10:27
show 1 more comment
  • In ipython you can type "importTab".

  • In the standard Python interpreter, you can type "help('modules')".

  • At the command-line, you can use pydoc modules.

  • In a script, call pkgutil.iter_modules().

share|improve this answer

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.:

pydoc -p 12345

Then it's possible to direct Safari to http://localhost:12345/ to see all modules.

share|improve this answer

I just use this to see currently used modules:

import sys as s
s.modules.keys()

which shows all modules running on your python.

For all built-in modules use:

s.modules()
share|improve this answer
1  
import sys as s – Dan Evans Jun 22 '12 at 22:09
1  
# After you import sys "import sys as s" you can print with: print sys.modules.keys() – Dan Evans Jun 22 '12 at 23:44
More on the sys module can be found here: effbot.org/librarybook/sys.htm – Dan Evans Jun 22 '12 at 23:48
Not sure why my post was edited, but thank you for using the info I posted to correct the mistakes in prior posts. You will return errors if you use help() vs help(''). This goes for dir('') & sys('') etc. as well. Hope this helps & is not removed. – Dan Evans Jun 24 '12 at 21:03
Ignore my last post, this post was not edited. I was thinking of a similar post found here: stackoverflow.com/questions/139180/… Sorry for the confusion. – Dan Evans Jun 24 '12 at 22:56

Very simple searching using pkgutil.iter_modules

from pkgutil import iter_modules
a=iter_modules()
while True:
    try: x=a.next()
    except: break
    if 'searchstr' in x[1]: print x[1]
share|improve this answer

Aside from using 'pip freeze' I have been installing yolk (http://pypi.python.org/pypi/yolk) in my virtual environments.

share|improve this answer

From the shell

ls site-packages

If that's not helpful, you can do this.

import sys
import os
for p in sys.path:
    print os.listdir( p )

And see what that produces.

share|improve this answer
which site-packages directory? This might do better: ls /usr/{local/,}lib/python$(python -V 2>&1|cut -d" " -f2 |cut -d. -f1-2)/site-packages – vezult Apr 11 '09 at 13:04
Also this will not show built-in modules, or modules in a custom PYTHONPATH, or ones installed in setuptools "development mode" etc. – dF. Apr 11 '09 at 13:06
My /usr/local/lib/python2.5/site-packages is empty, although I have installed modules. – Masi Apr 11 '09 at 13:08
@dF: While true, I don't see how any of those alternatives are relevant to the question. – S.Lott Apr 11 '09 at 18:37
1  
Kudos for not deleting this downvoted answer. It's helpful to the community to be able to see why a common answer is considered wrong. – Jeremy Stein Oct 18 '12 at 13:09
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.