如何查看python已有的包
查看python中已经安装的包,使用pip可以查看已经安装的Python软件包及其版本:
命令行中:
1. pip freeze2. pip list3. pydoc modules123
进入python环境:
在交互式解释器中输入
>>> help("modules")1
即可,效果跟在命令行下输入 pydoc modules是一样的
另一个方法
>>> import sys >>> sys.modules.keys()12
还有一个方法:
#python -m pydoc -p 1234pydoc server ready at http://localhost:1234/
来源:PY学习网:原文地址:https://www.py.cn/article.html