56

Trying to get selenium to work with Python 3 for web scraping purposes:

from selenium import webdriver
chrome_path = r"/Library/Frameworks/Python.framework/Versions/3.6/bin/chromedriver"
driver = webdriver.Chrome(chrome_path)

I get the following error message:

selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrome binary

A similar question was addressed here, but what is baffling to me is that Chrome is already installed on my system. The other asker apparently didn't have it on their computer. I'm running latest version of Mac OS.

4
  • Which version of chrome are you using ? Please attach a screenshot of the version with your question Commented Sep 3, 2017 at 19:30
  • 1
    Version 60.0.3112.113 Commented Sep 3, 2017 at 19:54
  • Which path is your chrome installed on? Commented Sep 3, 2017 at 19:55
  • 1
    File is stored at: /Users/alex/Desktop Commented Sep 3, 2017 at 20:05

13 Answers 13

68

The issue is that chromedriver also needs to know where chrome is. In your case it is at a non-default path. So you need to specify the complete path to the Google Chrome binary.

options = webdriver.ChromeOptions()
options.binary_location = "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
chrome_driver_binary = "/usr/local/bin/chromedriver"
driver = webdriver.Chrome(chrome_driver_binary, chrome_options=options)

Above code is what you should use

Sign up to request clarification or add additional context in comments.

3 Comments

Do not miss that the path does not end with ..../chrome.app The path should include contents/macos/
If I code in Google Colab, How to get the binary location?
good day dear Tarun - many thanks: well what can i do if i am facing this issue in google-colab. Well that is a bit special i think: Can i do a workaround there too!? - see my thread here: stackoverflow.com/questions/76401453/… - look forward to hear from you. Regards
9

I have met this annoying problem when I am lerning selenium. This is my solution: (MacOS 10.13.4)

  1. uninstall my chrome
  2. use homebrew to install chromedriver: brew cask install chromedriver
  3. use homebrew to install chrome: brew cask install google-chrome

Thanks to homebrew now chrome and chromedriver are installed in the same folder and this problem will be automatically solved.

2 Comments

In 2021, just brew install google-chrome will do.
goof day dear joseph - many thanks: well what can i do if i am facing this issue in google-colab. Can i do a workaround there too!? - see my thread here: stackoverflow.com/questions/76401453/… - look forward to hear from you. Regards
8

If anyone is getting the same error on a linux machine, then you are missing google chrome installation as one of the steps needed for chrome driver to work.

Follow this link to install Google chrome on Linux.

Now, check code

driver = webdriver.Chrome(executable_path='/usr/bin/chromedriver', options=chrome_options, service_args=['--verbose', '--log-path=/tmp/chromedriver.log'])

For me it worked.

Comments

6

It is important on Win to set the name of chrome.exe otherwise it fail to create a process (see below):

  from selenium import webdriver
  from webdriver_manager.chrome import ChromeDriverManager

  options = webdriver.ChromeOptions()
  options.binary_location = r"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
  chrome_driver_binary = r"C:/Users/Max/.wdm/chromedriver/75.0.3770.8/win32/chromedriver.exe"
  driver = webdriver.Chrome(chrome_driver_binary, chrome_options=options)
  driver.get('http://web.whatsapp.com')

selenium.common.exceptions.WebDriverException: Message: unknown error: Failed to create a Chrome process.

For Firefox (download driver https://github.com/mozilla/geckodriver/releases):

  options = webdriver.FirefoxOptions()
  #options.add_argument('-headless')
  #options.binary_location = r"C:\maxbook\maxboxpython\geckodriver-v0.24.0-win64\geckodriver.exe"
  options.binary_location = r"C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
  firefox_driver_binary = r"C:\maxbook\maxboxpython\geckodriver-v0.24.0-win64\\"
  driver = webdriver.Firefox(firefox_driver_binary, options=options)

3 Comments

good evening dear Max - well i wonder how to get this fix included in google-colab!? It is important for me to get a solution in google colab. How to do that!?
in colab you can use download as well with wget (with ! at the begin): !wget github.com/maxkleiner/maXbox4/releases/download/V4.2.4.80/… #!sudo apt-get install unzip !unzip maxbox4.zip !ls -l
dear Max - many thanks for the answer and all your hints - i try to get the things up and running - see here: stackoverflow.com/questions/76401453/… - but untill now - still struggle with all my approaches - look forward to hear from yiou. Regards
4

In my case, I install the Chrome browser then it's not throwing an error.

1 Comment

@what command did you use to install the browser?
3
options = webdriver.ChromeOptions()
options.binary_location = r"<YOUR_CHROME_PATH>\chrome.exe"
chrome_driver_path = r"<PATH_TO_CHROME_DRIVER>\chromedriver.exe>"

browser = webdriver.Chrome(chrome_driver_path, chrome_options=options)

2 Comments

More explanation would be helpful for the OP.
@Kyle Mar see bellow please.
2

If your chromedriver is located within /Library/Frameworks/Python.framework/Versions/3.6/bin/ directory the following code block should be working for you:

from selenium import webdriver

chrome_path = r'/Library/Frameworks/Python.framework/Versions/3.6/bin/chromedriver'
driver = webdriver.Chrome(executable_path=chrome_path)
driver.get('https://www.google.co.in')

2 Comments

well dear undeteched Selenium - many thanks - i am trying to get this solution working for me.
hello dear undetected Selenium - first of all many many thanks for your ciontinued help in all that things: dear u. Selenium: again many thanks for the answer and all your hints - i try to get the things up and running - see here: stackoverflow.com/questions/76401453/… - but untill now - still struggle with all my approaches - look forward to hear from yiou. Regards
1

all you need is download latest version of chrome and chromedriver and install it

Comments

0

This article gives the full breakdown on what is happening. Installing the latest web driver should fix the problem rather than changing the code.

Basically version 85 of chrome was installed in a different location, however this only affected new installations so it wasn't noticeable for most people.

The latest web driver understands about the new location so getting an updated driver is the easiest solution - that is of course unless you specifically need to test an older version.

Location of drivers.

Comments

0

I recently solved this issue by simply downloading the Chrome Browser. Download it and to download latest version of chrome driver by using this code

from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager

driver = webdriver.Chrome(ChromeDriverManager().install())

Comments

0

Create file main.py has content

from selenium import webdriver

options = webdriver.ChromeOptions()
options.binary_location = r"C:\Program Files\Google\Chrome\Application\chrome.exe"
chrome_driver_binary = r"C:/Users/firerose/Downloads/chromedriver_win32/chromedriver.exe"
driver = webdriver.Chrome(chrome_driver_binary, options=options)
driver.get('https://golangnow.com')

Notice: New keyword is options .

Releated links

Comments

0

if you are on ubuntu make sure that the chromedriver executable points to the right chromedriver.

in my case I had an error like this: from unknown error: no chrome binary at /usr/bin/chromedriver

while my executable was: /usr/local/bin/chromedriver-linux64/chromedriver

by deleting the path /usr/bin/chromedriver it worked for me

Comments

-1

For mac: Note space between Chrome and .app

options = webdriver.ChromeOptions()
options.binary_location = "/Applications/Google Chrome .app/Contents/MacOS/Google Chrome"
chrome_driver_binary = "/usr/local/bin/chromedriver"
driver = webdriver.Chrome(chrome_driver_binary, chrome_options=options)

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.