일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 20200615뉴스
- 뉴스
- 크롤링
- 파이썬
- 기사
- 헤드라인뉴스
- 헤드라인기사
- Python
- 코테
- encoding
- 20201018뉴스
- json
- 백준2225
- 알고리즘
- C++
- 20201016뉴스
- 뉴스헤드라인
- MySQL
- 20201017뉴스
- 20201015뉴스
- 20201011뉴스
- 헤드라인
- 헤드라인모음
- 20200816뉴스
- LeetCode #Python #알고리즘 #코딩테스트 #interview
- 오늘의뉴스
- 기사헤드라인
- 백준
- 경제뉴스
- 20201013뉴스
Archives
- Today
- Total
HelloCho
[Python] WebDriverException: Message: unknown error: cannot find Chrome binary 에러 해결하기 본문
Python
[Python] WebDriverException: Message: unknown error: cannot find Chrome binary 에러 해결하기
choo2969 2020. 12. 28. 23:50오랜만에 selenium을 이용해서 크롤링을 하기 위해 selenium과 chrome driver를 설치했다.
그동안 너무 아무렇지도 않게 잘했었는데 엥 이게 웬걸 갑자기 WebDriverException: Message: unknown error: cannot find Chrome binary 에러가 나와서 당황했다.
구글링을 했는데 생각보다 해결하는데 좀 걸렸다 ㅋㅋㅋ...(오랜만에 해서 그런가 보다)
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.options import Options
options = Options()
options.binary_location= 'C:/Program Files/Google/Chrome/Application/chrome.exe'
driver = webdriver.Chrome('path/chromedriver_win32/chromedriver.exe', chrome_options = options)
binary 파일의 경로를 제대로 못 잡나 보다...
options를 넣어서 driver 변수 할당할 때 넣어주면 간단하게 해결이 된다.
'Python' 카테고리의 다른 글
[Python] http post 방식으로 json Data Parameter 보내기 (0) | 2021.10.31 |
---|---|
[Python] pandas unicodeEncodeError 'cp949' (0) | 2021.05.31 |
[Python] Mac OS pip 설치하기 (0) | 2021.04.28 |
Comments