RileyXX/IMDB-Trakt-Syncer

Error: This version of ChromeDriver only supports Chrome version (xxx)

Opened this issue · 0 comments

Problem:

Error wrong chromedriver version installed.

Solution 1:

  1. Uninstall chromedriver-py by running python -m pip uninstall chromedriver-py in command line.
  2. Run the script again. It should download the required version. If you encounter the same error, proceed to solution 2.

Solution 2:

  1. Uninstall chromedriver-py by running python -m pip uninstall chromedriver-py in command line.
  2. Determine your current Chrome browser version:
    • Open your Chrome browser and go to chrome://settings/help.
    • Alternatively, go to Settings > About Chrome in your Chrome browser.
    • Check the version number (e.g., 112... or 111, etc.).
  3. Visit the chromedriver-py releases page and find the latest version that matches the prefix your Chrome version. Copy the corresponding version number. For example, if you are using Chrome version 112..., you would need version 112.0.5615.49.
  4. Install the correct chromedriver version by running python -m pip install chromedriver-py==VERSION_NUMBER in command line. Replace VERSION_NUMBER with the version you copied in step 3. Press enter to install.
  5. Run the script again. It should now function properly.