Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
selenium-3.0.1.tar.gz install
#1
Does anyone know how to install selenium. and don't tell me pip, it will not install anything.
thank you. Think
Reply
#2
1) use pip or figure out why you are having so much trouble with pip
pip install selenium 
2) build it. For this you need a compiler. Download the source from pypi and execute where the setup file is
python setup.py install
3) copy the wheel files into your python directory. Download the correct wheel from pypi and follow this guide....
http://python-forum.io/Thread-Install-a-...y-manually

4)
If your on a linux distro (which i believe you are not), you can just get it from that distros repos
metulburr@ubuntu:~$ sudo apt-cache search selenium
chromium-chromedriver - WebDriver driver for the Chromium Browser
libtest-www-selenium-perl - Perl test framework using Selenium Remote Control
python-selenium - Python bindings for Selenium
python3-selenium - Python3 bindings for Selenium
ruby-childprocess - Ruby library for controlling external programs running in the background
and install it with something as simple as
sudo apt-get install python-selenium
Recommended Tutorials:
Reply
#3
I got it install, I found a program called easy_install it install all the add_on the pip would not do.
thank you
Reply
#4
pip and easy_install are very close to the same thing. They both use built-in parts of python to find and install packages, and they both come with the default install of python. If one works but the other doesn't, then you're not really missing anything important.

https://packaging.python.org/pip_easy_install/
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  pip wont install selenium simon1 2 5,156 Nov-03-2017, 09:10 PM
Last Post: simon1
  Error in Selenium: CRITICAL:root:Selenium module is not installed...Exiting program. AcszE 1 3,586 Nov-03-2017, 08:41 PM
Last Post: metulburr

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020