작성
·
10K
1
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
# 크롬 드라이버 자동 업데이트
from webdriver_manager.chrome import ChromeDriverManager
service = Service(executable_path=ChromeDriverManager().install())
위와 같이 코딩하고 실행하면
Traceback (most recent call last):
File "c:\Users\omonge\Desktop\파이썬공부\desktop\requests_1.py", line 7, in <module>
from webdriver_manager.chrome import ChromeDriverManager
ModuleNotFoundError: No module named 'webdriver_manager'
위와 같이 모듈이 없다고 하면서 오류가 발생하는데요.
pip install webdriver_manager
라이브러리 설치도 했고
pip list 에도
webdriver-manager 3.8.3
설치가 된 것으로 나오는데요.
라이브러리 설치 인식이 안되는걸까요?
검색해보고
컴퓨터도 껐다 켜보고.. 했는데요. 계속 인식이
안되는것 같아요 ㅠ
윈도우10 입니다.
대박 감사합니다