0
ModuleNotFoundError - Python - Need Help
import selenium driver = webdriver.Chrome() driver.get('https://www.instagram.com/accounts/edit/?hl=en') id_box = driver.find_element_by_id('pepUsername') id_box.send_keys('uyfhufha8ifw') ERROR -> ModuleNotFoundError: No module named 'selenium' I'm trying to change my username on Instagram Automatically but its saying Module not found????? (Btw I'm a Beginner)
1 Odpowiedź
+ 1
Make sure you've installed selenium on your system.
You can download Python bindings for Selenium from the PyPI page for selenium package. However, a better approach would be to use pip to install the selenium package. Python 3.6 has pip available in the standard library. Using pip, you can install selenium like this:
pip install selenium
Read more at: https://selenium-python.readthedocs.io