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 변수 할당할 때 넣어주면 간단하게 해결이 된다.

 

Comments