一、安装selenium
通过pip命令安装selenium包:(pip的安装方法:http://www.cnblogs.com/zhengyihan1216/articles/6011640.html)
①通过pip安装第三方库时,若只输入包名,则默认安装该库的最新版本
C:UsersDELL>pip install selenium
②安装指定版本的selenium
C:UsersDELL>pip install selenium==2.45.0
二、查看selenium的版本
C:UsersDELL>pip show selenium
三、卸载当前已经安装的selenium
C:UsersDELL>pip uninstall selenium