Answer by jmunsch for How do I get a list of locally installed Python modules?
https://setuptools.pypa.io/en/latest/pkg_resources.htmlAttentionUse of pkg_resources is deprecated in favor of importlib.resources, importlib.metadata and their backports (importlib_resources,...
View ArticleAnswer by Mandera for How do I get a list of locally installed Python modules?
I'm comparing five methods to retrieve installed "modules", all of which I've seen in this threaditer_moduleshelp("modules")builtin_module_namespip listworking_setIncludes distributions❌❌❌✔️✔️Includes...
View ArticleAnswer by Artur for How do I get a list of locally installed Python modules?
Use:pip3 freezeRun this command globally. It will show you all the global installations.Run this command on the virtual environment. It will show you all the local installations.
View ArticleAnswer by Santle Camilus for How do I get a list of locally installed Python...
pip install pip-chill pip-chill
View ArticleAnswer by Josh for How do I get a list of locally installed Python modules?
If none of the previous answers seem to help: In my environment, it was broken from a system upgrade and I could not upgrade pip.While it won't give you an accurate list, you can get an idea of which...
View ArticleAnswer by jabberwocky for How do I get a list of locally installed Python...
Works Regardless of Pip VersionRun the following in your python editor or IPython:import pkg_resourcesinstalled_packages = {d.project_name: d.version for d in...
View ArticleAnswer by Elijah for How do I get a list of locally installed Python modules?
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...
View ArticleAnswer by Sachin Prabhu for How do I get a list of locally installed Python...
Installationpip install pkgutilCodeimport pkgutilfor i in pkgutil.iter_modules(None): # returns a tuple (path, package_name, ispkg_flag) print(i[1]) #or you can append it to a listSample...
View ArticleAnswer by Abdullah Akhtar for How do I get a list of locally installed Python...
This will helpIn a terminal or IPython, type:help('modules')thenIn [1]: import #import press-TABDisplay all 631 possibilities? (y or n)ANSI audiodev markupbaseAptUrl audioop markupsafeArgImagePlugin...
View ArticleAnswer by Marcelo Villa for How do I get a list of locally installed Python...
For anyone wondering how to call pip list from a Python program you can use the following:import pippip.main(['list]) # this will print all the packages
View ArticleAnswer by Amit Gupta for How do I get a list of locally installed Python...
$ pip freeze -- Output installed packages in requirements format$ pip list -- List installed packages.
View ArticleAnswer by Bruno Bronosky for How do I get a list of locally installed Python...
I needed to find the specific version of packages available by default in AWS Lambda. I did so with a mashup of ideas from this page. I'm sharing it for posterity.import pkgutil__version__ = '0.1.1'def...
View ArticleAnswer by not2qubit for How do I get a list of locally installed Python modules?
There are many way to skin a cat.The most simple way is to use the pydoc function directly from the shell with:pydoc modulesBut for more information use the tool called pip-date that also tell you the...
View ArticleAnswer by Daniel F for How do I get a list of locally installed Python modules?
Warning: Adam Matan discourages this use in pip > 10.0. Also, read @sinoroc's comment belowThis was inspired by Adam Matan's answer (the accepted one):import tabulatetry: from pip import...
View ArticleAnswer by Massimo for How do I get a list of locally installed Python modules?
There are many ideas, initially I am pondering on these two:pipcons: not always installedhelp('modules')cons: output to console; with broken modules (see ubuntu...) can segfaultI need an easy approach,...
View ArticleAnswer by James for How do I get a list of locally installed Python modules?
I normally use pip list to get a list of packages (with version).This works in a virtual environment too, of course. To show what's installed in only the virtual environment (not global packages), use...
View ArticleAnswer by Big_Al_Tx for How do I get a list of locally installed Python modules?
As of pip 10, the accepted answer will no longer work. The development team has removed access to the get_installed_distributions routine. There is an alternate function in the setuptools for doing the...
View ArticleAnswer by PADYMKO for How do I get a list of locally installed Python modules?
This solution is primary based on modules importlib and pkgutil and work with CPython 3.4 and CPython 3.5, but has no support for the CPython 2.Explanationsys.builtin_module_names - names all built-in...
View ArticleAnswer by Pavan Gupta for How do I get a list of locally installed Python...
pip freeze does it all, finding packages. However, one can simply write the following command to list all paths where Python packages are.>>> import site;...
View ArticleAnswer by Saurabh for How do I get a list of locally installed Python modules?
On Windows, enter this in cmd:cd C:\python\libspython -m pip freeze
View Article