How to get previous versions of Python Selenium Webdriver

630 views
Skip to first unread message

Venu

unread,
May 3, 2014, 1:46:37 AM5/3/14
to seleniu...@googlegroups.com

Is there a way to uninstall Selenium Webdriver in linux? I want to reinstall an older version ie 2.33 which worked for me. Can you please let me know the syntax for installing specific version of selenium in linux?

In Selenium website previous release of java are present. Where can I previous versions of Python?

https://code.google.com/p/selenium/downloads/list?can=1&q=

Ed Manlove

unread,
May 4, 2014, 2:40:48 PM5/4/14
to seleniu...@googlegroups.com

 For python, the recommended tool is pip, http://www.pip-installer.org. To install pip you can use the linux package managers [1] or simply download get-pip.py and install with python get-pip.py. With pip you can uninstall python packages, like

pip uninstall selenium

You can upgrade to the latest

pip install -U selenium

You can install a specific version

pip install selenium==2.33

and host of other functionality [2].

Ed


[1] http://www.pip-installer.org/en/latest/installing.html
[2] http://www.pip-installer.org/en/latest/user_guide.html

Venu

unread,
May 5, 2014, 12:52:07 AM5/5/14
to seleniu...@googlegroups.com
Hi,
   If pip is not installed, then selenium can be installed using setup.py. Is there a way to uninstall other than pip?

Thanks.

Ed Manlove

unread,
May 6, 2014, 6:22:22 AM5/6/14
to seleniu...@googlegroups.com


On Monday, May 5, 2014 12:52:07 AM UTC-4, Venu wrote:
Hi,
   If pip is not installed, then selenium can be installed using setup.py. Is there a way to uninstall other than pip?

Thanks.

Simply delete the files. Under Linux the installed selenium package should be located either at /usr/local/lib/python2.7/dist-packages
 or /usr/lib/python2.7/dist-packages.

Ed


Reply all
Reply to author
Forward
0 new messages