Answer by Adam Matan for How do I get a list of locally installed Python...
SolutionDo not use with pip > 10.0!My 50 cents for getting a pip freeze-like list from a Python script:import pipinstalled_packages = pip.get_installed_distributions()installed_packages_list =...
View ArticleAnswer by yegle for How do I get a list of locally installed Python modules?
to get all available modules, run sys.modulesto get all installed modules (read: installed by pip), you may look at pip.get_installed_distributions()For the second purpose, example code:import pipfor...
View ArticleAnswer by Sadheesh for How do I get a list of locally installed Python modules?
If we need to list the installed packages in the Python shell, we can use the help command as follows>>> help('modules package')
View ArticleAnswer by Shreyas for How do I get a list of locally installed Python modules?
In case you have an Anaconda Python distribution installed, you could also useconda listin addition to the solutions described in previous answers.
View ArticleAnswer by DrkNess for How do I get a list of locally installed Python modules?
In a normal shell, just usepydoc modules
View ArticleAnswer by Bryce for How do I get a list of locally installed Python modules?
Since pip version 1.3, you've got access to:pip listWhich seems to be syntactic sugar for "pip freeze". It will list all of the modules particular to your installation or virtualenv, along with their...
View ArticleAnswer by jdsantiagojr for How do I get a list of locally installed Python...
Aside from using pip freeze I have been installing yolk in my virtual environments.
View ArticleAnswer by Qiau for How do I get a list of locally installed Python modules?
I ran into a custom installed python 2.7 on OS X. It required X11 to list modules installed (both using help and pydoc).To be able to list all modules without installing X11 I ran pydoc as http-server,...
View ArticleAnswer by Dan Evans for How do I get a list of locally installed Python modules?
I just use this to see currently used modules:import sys as ss.modules.keys()which shows all modules running on your python.For all built-in modules use:s.modulesWhich is a dict containing all modules...
View ArticleAnswer by stuudent for How do I get a list of locally installed Python modules?
Very simple searching using pkgutil.iter_modulesfrom pkgutil import iter_modulesa=iter_modules()while True: try: x=a.next() except: break if 'searchstr' in x[1]: print x[1]
View ArticleAnswer by johnsyweb for How do I get a list of locally installed Python modules?
In ipython you can type "importTab".In the standard Python interpreter, you can type "help('modules')".At the command-line, you can use pydocmodules.In a script, call pkgutil.iter_modules().
View ArticleAnswer by chiggsy for How do I get a list of locally installed Python modules?
Now, these methods I tried myself, and I got exactly what was advertised: All the modules.Alas, really you don't care much about the stdlib. You know what you get with a Python install.Really, I want...
View ArticleAnswer by ChristopheD for How do I get a list of locally installed Python...
help('modules')in a Python shell/prompt.
View ArticleAnswer by S.Lott for How do I get a list of locally installed Python modules?
From the shellls site-packagesIf that's not helpful, you can do this.import sysimport osfor p in sys.path: print os.listdir( p )And see what that produces.
View ArticleHow do I get a list of locally installed Python modules?
How do I get a list of Python modules installed on my computer?
View Article