Installation of selenium in the anaconda

1. Install anaconda

Installation package can be downloaded from the official website or domestic mirror site to download https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/

After downloading click next to continue good

2. Install selenium library

Switching in cmd to the anaconda directory scripts, execution pip install selenium

After the library will automatically install selenium

Return anaconda directory, run python input import selenium verify that the installation was successful

You can also see if the installation was successful in scripts by pip show selenium, and view version

You can also update the pip by python -m pip install --upgrade pip under anaconda3 directory

3. Install chrome

Installation package:

https://www.google.cn/chrome/

4. Installation chromedriver

https://www.cnblogs.com/technologylife/p/5829944.html 

This blog has installed chromedriver table corresponds to the version included with download and installation package link:

http://npm.taobao.org/mirrors/chromedriver/

Unzip the package will be placed in the directory can anaconda3

 

Published 55 original articles · won praise 40 · views 210 000 +

Guess you like

Origin blog.csdn.net/hrainning/article/details/83684147