Skip to content Skip to sidebar Skip to footer

Modulenotfounderror: No Module Named 'selenium' Message

I'm trying to send a Whatsapp-Message via a Python script, therefor I'm using the following code: from selenium import webdriver from selenium.webdriver.support.ui import WebDriver

Solution 1:

Try updating your selenium version using this command, maybe it helps:

python -m pip install -U selenium

Solution 2:

If you have anaconda installed on your computer, you can install it as "conda install selenium" or "pip3 install selenium".

Post a Comment for "Modulenotfounderror: No Module Named 'selenium' Message"