0

How do i install previous version of selenium

pip install selenium

install the latest version

pip install selenium<3.0.1 gives error The system cannot find the file specified.

basically i want to install the latest selenium in version 2

kumar
  • 8,207
  • 20
  • 85
  • 176

1 Answers1

2

You can specify version numbers as follows:

pip install package==1.0
Thom Wiggers
  • 6,938
  • 1
  • 39
  • 65