Quantcast
Channel: How do I get a list of locally installed Python modules? - Stack Overflow
Viewing all articles
Browse latest Browse all 35

Answer by S.Lott for How do I get a list of locally installed Python modules?

$
0
0

From the shell

ls site-packages

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

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

And see what that produces.


Viewing all articles
Browse latest Browse all 35

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>