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

$
0
0

Here is a Python code solution that will return a list of modules installed. One can easily modify the code to include version numbers.

import subprocessimport sysfrom pprint import pprintinstalled_packages = reqs = subprocess.check_output([sys.executable, '-m', 'pip', 'freeze']).decode('utf-8')installed_packages = installed_packages.split('\r\n')installed_packages = [pkg.split('==')[0] for pkg in installed_packages if pkg != '']pprint(installed_packages)

Viewing all articles
Browse latest Browse all 35

Trending Articles



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