vote up 4 vote down star
1

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?

flag

2 Answers

vote up 8 vote down check
help('modules')

in a Python shell/prompt.

link|flag
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 at 13:05
Could you paste the entire warning at for example paste.pocoo.org and post the link here? – ChristopheD Apr 11 at 13:11
“/usr/lib/python2.5/site-packages/apt/__init__.py:18: FutureWarning: apt API not stable yet” is normal on Debian/Ubuntu Pythons, an artefact of attempting to graft apt packages into Python package management. I still see the (textual) list of modules. – bobince Apr 11 at 13:17
Also pydoc modules from the shell should work. – dF Apr 11 at 13:20
@dF pydoc modules works. You should submit it as an answer. – Abizern Apr 11 at 13:30
show 4 more comments
vote up -1 vote down

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.

link|flag
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 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 at 13:06
My /usr/local/lib/python2.5/site-packages is empty, although I have installed modules. – Masi Apr 11 at 13:08
@dF: While true, I don't see how any of those alternatives are relevant to the question. – S.Lott Apr 11 at 18:37
@Masi: Interesting. You'll have to look at sys.path to see all the places they might have been put. – S.Lott Apr 11 at 18:37

Your Answer

Get an OpenID
or

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