One of the ways to get the list of the installed packages on python is using command prompt. Here I will show you the step.
- Open command prompt
- Type python and Enter
- It will show like the below image if you installed
- After Type ** help("modules") and It will show the list of all installed modules on python.
Top comments (2)
Hi Aasik!
If you want it all modules and third party packages as a data structure you can operate on you can also do this:
Let me know if that works for you!
Hi,
Thanks and It works for me.