1

I am finding many resources for using easy_install and pip to set up the NEWEST version of Selenium on a Windows machine. But how would I do so for a dated version of Selenium? I can get the tar.gz file, but have no idea how or where to put it in relation to C:\python27

Any ideas?

1 Answers1

1

You need to use a package manager called pip. Then specify the specific selenium version using ==:

pip install selenium==2.35.0

See also: How do I install pip on Windows?

Community
  • 1
  • 1
alecxe
  • 462,703
  • 120
  • 1,088
  • 1,195