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

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 Article


Answer 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 Article


Answer 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 Article

Answer 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 Article

Answer by DrkNess for How do I get a list of locally installed Python modules?

In a normal shell, just usepydoc modules

View Article


Answer 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 Article

Answer 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 Article

Answer 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 Article


Answer 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 Article


Answer 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 Article

Answer 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 Article

Answer 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 Article

Answer by ChristopheD for How do I get a list of locally installed Python...

help('modules')in a Python shell/prompt.

View Article


Answer 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 Article

How 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

Browsing all 35 articles
Browse latest View live


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