python3 selenium 安装以及验证

1. 相关链接

  • 官方网站:http://www.seleniumhq.org
  • GitHub:https://github.com/SeleniumHQ/selenium/tree/master/py
  • PyPI:https://pypi.python.org/pypi/selenium
  • 官方文档:http://selenium-python.readthedocs.io
  • 中文文档:http://selenium-python-zh.readthedocs.io

2. pip安装

这里推荐直接使用pip安装,执行如下命令即可:

 

pip3 install selenium

 

3. wheel安装

此外,也可以到PyPI下载对应的wheel文件进行安装(下载地址:https://pypi.python.org/pypi/selenium/#downloads),如最新版本为3.4.3,则下载selenium-3.4.3-py2.py3-none-any.whl即可。

然后进入wheel文件目录,使用pip安装:

 

 

1

pip3 install selenium-3.4.3-py2.py3-none-any.whl

 

4. 验证安装

进入Python命令行交互模式,导入Selenium包,如果没有报错,则证明安装成功:

 

 

1

2

$ python

>>> import selenium

你可能感兴趣的:(spider)