About 257,000 results
Open links in new tab
  1. How to list all installed packages and their versions in Python?

    Is there a way in Python to list all installed packages and their versions? I know I can go inside python/Lib/site-packages and see what files and directories exist, but I find this very awkward. ...

  2. How do I get a list of locally installed Python modules?

    Caveats I have noticed a strange behaviour of this technique - when the Python interpreter is invoked in the same directory as a setup.py file, it does not list the package installed by …

  3. python - How to list all functions in a module? - Stack Overflow

    For this reason it may not be useful to list them with the public ones (this is how Python knows what to get when using from module import *). __all__ could be used to solve this problem, it …

  4. How to get a list of all the Python standard library modules?

    I brute forced it by writing some code to scrape the TOC of the Standard Library page in the official Python docs. I also built a simple API for getting a list of standard libraries (for Python …

  5. Get the list of packages installed in Anaconda - Stack Overflow

    Mar 21, 2021 · I don't know about Anaconda specifically, but for generic Python, third-party packages are usually installed in the site-packages folder.

  6. list - How to find out the installed (Python) libraries in Visual ...

    Jan 21, 2019 · 6 I have been coding Python 3.7 using Visual Studio Code on Windows 10. Recently, I have taken over a new project, which calls for some newer and different libraries. …

  7. python - How to list all available package versions with pip?

    Another nice property of this solution is that it works with all the normal flags to limit installation sources. For example pip install --only-binary :all: pylibmc will list all the versions of pylibmc …

  8. How do I get a list of all the ASCII characters using Python?

    How do I get a list of all the ASCII characters using Python? Asked 14 years, 6 months ago Modified 4 years, 8 months ago Viewed 272k times

  9. pip - How can I make a list of installed packages in a certain ...

    Dec 10, 2017 · Calling pip command inside a virtualenv should list the packages visible/available in the isolated environment. Make sure to use a recent version of virtualenv that uses option - …

  10. Where are the python modules stored? - Stack Overflow

    Dec 24, 2015 · Is there a way to obtain a list of Python modules available (i.e. installed) on a machine? I am using Ubuntu Karmic and Synaptic for package management. I have just …