首页 > 技术文章 > selenium的安装

zhengyihan1216 2016-11-11 22:17 原文

一、安装selenium

     通过pip命令安装selenium包:(pip的安装方法:http://www.cnblogs.com/zhengyihan1216/articles/6011640.html)

     ①通过pip安装第三方库时,若只输入包名,则默认安装该库的最新版本

        C:\Users\DELL>pip install selenium   

     ②安装指定版本的selenium

        C:\Users\DELL>pip install selenium==2.45.0   

二、查看selenium的版本

      C:\Users\DELL>pip show selenium

三、卸载当前已经安装的selenium

      C:\Users\DELL>pip uninstall selenium

 

推荐阅读