richardyc/Chrome-GPT

FileNotFoundError: [Errno 2] No such file or directory: 'chromedriver'

Opened this issue · 3 comments

kmb25 commented

Any chance you know where I'm going wrong here. Thanks!

@kmb25 it is Selenium problem.
What platform is your code running on? Linux, macOS, Windows or other platform?
You can take a look at this link first: https://stackoverflow.com/questions/64919950/filenotfounderror-errno-2-no-such-file-or-directory-users-fuadhafiz-docume

You need to put your chromedriver to the same directory or the one where it should be. Download chromedriver first on google and place it somewhere. Copy the Path and paste it to your code. This should solve it

The reason for the error may be a mismatch between the version of ChromeDriver you are using and the version of Google Chrome installed on your system. The specific error message you received is: "selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 77."

Thin can be help you.

  1. install webdriver-manager
    poetry add webdriver-manager

  2. mofify chromegpt/tools/selenium.py to auto resolve driver versions.

from webdriver_manager.chrome import ChromeDriverManager  # <- add

def __init__(self, headless: bool = False) -> None:
~~~~~~~~~~~
- self.driver = webdriver.Chrome(options=chrome_options)
+ self.driver = webdriver.Chrome(ChromeDriverManager().install(), options=chrome_options)