ModuleNotFoundError - Python - Need Help | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
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)

11th Dec 2018, 3:48 AM
MyMomAteMyCat123
MyMomAteMyCat123 - avatar
1 ответ
+ 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
11th Dec 2018, 6:33 AM
Шащи Ранжан
Шащи Ранжан - avatar