1, Install python and Selenium.
I use Python 3.5, the following is the example
1.) Python download:3.5
Https://www.python.org/downloads/release/python-350/
At the end of the Web site paper, select:windows x86 executable Installer
2.) After we install Python, we should configure the environment variable.
Go to:computer->properties->advanced System settings->advanced--environment variables...-> System Variables ... Path->edit
C:\programdata\oracle\java\javapath;%systemroot%\system32;%systemroot%;%systemroot%\system32\wbem;%systemroot %\system32\windowspowershell\v1.0\; C:\Program Files (x86) \microsoft Asp.net\asp.net Web Pages\v1.0\; C:\Users\t_chenme\AppData\Local\Programs\Python\Python35-32\; C:\Users\t_chenme\AppData\Local\Programs\Python\Python35-32\Scripts
2. Setuptools to install:
I use SETUPTOOLS-18.4-PY2.PY3-NONE-ANY.WHL (MD5), it's for Python 3.5
I Download from Https://pypi.python.org/pypi/setuptools#downloads
In cmd, go to the path, and execute:
Python ez_setup.py
3. Setup Selenium:
Command type in:pip install selenium
Prepare Python Environment and install selenium.