列出已安装的 Python 包

如何查找或列出已安装的 Python 包。

Use python builtin help function

help("modules")

Use python pip tool

# use pip
$ pip list
$ pip show
$ pip freeze

参考资料

python