How to Get All the Modules Installed in Python

You may follow these quick steps in order to get a list of all the modules installed in Python:

(1) To start, open the Python Shell and then type/copy this command:

help('modules')

(2) Finally, press ENTER, and you’ll get a list of all the modules installed in Python.

You may also want to check the following guide that explains the complete steps to install a module in Python.