Home:ALL Converter>Find out all the python modules available on my machine

Find out all the python modules available on my machine

Ask Time:2020-07-11T00:22:39         Author:user2647717

Json Formatter

I want to see all the modules installed on my machine. I tried "pip list" but it shows only packages.

> =>pip list Package    Version
> ---------- ------- 
> pip        20.0.2 
> setuptools 40.6.2 
> WARNING: You are using pip version 20.0.2; however, version 20.1.1 is available.
> You should consider upgrading via the
> '/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7 -m
> pip install --upgrade pip' command.

I want to see all the modules like re, time, sys and so on.

Author:user2647717,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/62838456/find-out-all-the-python-modules-available-on-my-machine
Maxim :

You can also go to your python shell and type help('modules'). This will return a list of local modules on your machine.",
2020-07-10T16:38:56
yy