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
  • 6,415
  • 13
  • 69
  • 135

1 Answers1

2

You can specify version numbers as follows:

pip install package==1.0
Thom Wiggers
  • 6,694
  • 1
  • 39
  • 61