Linked Questions
34 questions linked to/from Python : no module named selenium
1
vote
1
answer
1k
views
Python 3 error: ImportError: No module named selenium [duplicate]
I am coding on Sublime Text. I have selenium installed and I keep getting an error. Here is my code:
from selenium import webdriver
driver = webdriver.Chrome(executable_path='/Users/dylansiegel/...
0
votes
2
answers
875
views
ImportError: No module named selenium on Mac [duplicate]
I'm trying to build an easy python (python3) web scraper on a Mac. I installed Selenium in many different ways but always when I run my web scraping program the output says:
Traceback (most recent ...
1
vote
0
answers
263
views
Cannot import Selenium even when it's installed [duplicate]
I am trying to import Selenium to my Python code but it won't work.
I tried to install selenium in different ways. First, I installed it in cmd using "pip install selenium". Since importing of ...
0
votes
1
answer
192
views
Selenium webdriver imports correct in the Python shell, but not when I write a script [duplicate]
So I am trying to use the selenium webdriver in a python script as follows:
from selenium import webdriver
Now this is all fine and dandy when I do it within the python shell, but if I write it into ...
0
votes
0
answers
178
views
python not recognize webdriver firefox&chrome [duplicate]
i use python 3.6.4 and install selenium with pip command
pip install -U selenium
when i use a simple code like this
from selenium import webdriver
browser = webdriver.Firefox()
browser.get('http:...
1
vote
0
answers
136
views
Error while trying to install selenium in ubuntu 18.04 [duplicate]
I have installed python in my ubuntu machine which is of version 18.0 by using command:
sudo apt-get install python-pip
It has two versions of python installed
ubuntu@ubuntu-OptiPlex-960:~$ python --...
0
votes
0
answers
122
views
How to fix ImportError: No module named selenium on Mac [duplicate]
Python version 2 OSX
I know that there were other questions like this asked on other posts
but they all said to run pip install selenium which I did and even then I cannot seem to be able to import ...
0
votes
1
answer
118
views
I get error saying 'no module named selenium' [duplicate]
I have tried to install selenium multiple times.
I typed in all these below.
python3 -m pip install selenium
pip3 install selenium
pip install selenium
etc
I can tell it has been installed by ...
1
vote
0
answers
79
views
How to resolve problem in pip installing Selenium in python 3.6.1 [duplicate]
I am trying to install Selenium in python 3.6.1 through pip install,I was prompted with error "Could not find a version that satisfies the requirement selenium (from versions: )
No matching ...
user avatar
user9380758
1
vote
1
answer
34
views
NoModuleError after pip successful install (selenium) [duplicate]
It have no issue install it, importing it, but if I try to run it its a no go
pic: https://i.sstatic.net/C29D0.jpg
I am on python 3.10.2
0
votes
0
answers
36
views
Trying to run Selenium in python shell [duplicate]
After successfully installing selenium at the command line prompt using - pip install selenium
I get the following error code after typing 'from selenium import webdriver' into the python shell (idle)
...
1
vote
0
answers
22
views
Error while importing selenium even though selenium is installed [duplicate]
I'm working on a project to learn web scraping. I've been coding pretty actively since March with no import issues, but yesterday I tried to run:
from selenium import webdriver
and I was met with:
...
487
votes
24
answers
2.2m
views
How to add to the PYTHONPATH in Windows, so it finds my modules/packages? [duplicate]
I have a directory which hosts all of my Django apps (C:\My_Projects). I want to add this directory to my PYTHONPATH so I can call the apps directly.
I tried adding C:\My_Projects\; to my Windows ...
7
votes
12
answers
52k
views
AttributeError Issue: module 'selenium.webdriver' has no attribute 'Chrome'
I have just started Selenium using Python. And I'm facing the Attribute error issue.
Have Installed Python 3.6.5 and installed the latest selenium
packages(selenium-3.11.0)
Have also added Scripts and ...