pip 搜索安装包、查看已经安装模块、

pip 安装包

  • 1,PyPI查找包
  • 2,安装包
  • 3,列出已安装的包
  • 4,显示已安装软件包的信息

1,PyPI查找包

  • pip3 search
╰─➤  pip3 search seleniumselenium (3.141.0)                       - Python bindings for Selenium

2,安装包

  • pip3 install
╰─➤  pip3 install selenium

3,列出已安装的包

  • pip3 list
╰─➤  pwdastroid           2.2.5certifi           2019.3.9chardet           3.0.4Click             7.0colorama          0.4.1delegator.py      0.1.1
╰─➤  pip3 list | grep seleniumselenium          3.141.0

4,显示已安装软件包的信息

  • pip3 show
╰─➤  pip3 show seleniumName: seleniumVersion: 3.141.0Summary: Python bindings for Selenium
(0)

相关推荐