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 jabberwocky for How do I get a list of locally installed Python modules?

$
0
0

Works Regardless of Pip Version

Run the following in your python editor or IPython:

import pkg_resourcesinstalled_packages = {d.project_name: d.version for d in pkg_resources.working_set}print(installed_packages)

Read other answers and pulled together this combo, which is quickest and easiest inside Python.

Find the specific Packages

Conveniently you can then get items from your dict easily, i.e.

installed_packages['pandas']>> '1.16.4'

Using Pip List Well

!pip list will run inside your jupyter notebook if working there, simplifying the 'quick check'Combine with other utilities like grep(if you have installed)pip list | grep pandas will get you your current pandas version for example


Viewing all articles
Browse latest Browse all 35

Trending Articles



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