List installed python packages
How to find out or list the installed python packages.
Use python builtin help function
help("modules")
Use python pip tool
# use pip
$ pip list
$ pip show
$ pip freeze
References
How to find out or list the installed python packages.
help("modules")
# use pip
$ pip list
$ pip show
$ pip freeze