A simple Python package that automatically downloads and manages the correct ChromeDriver binary for your platform, enabling Selenium WebDriver to control Chrome. Version 148.0.7778.56 is current; the package mirrors ChromeDriver releases and is updated frequently.
pip install chromedriver-pyVerified import paths — ran on the pinned version, not inferred.
Basic Selenium script using chromedriver-py to automatically locate the ChromeDriver binary.
from selenium.webdriver.chrome.service import Service from chromedriver_py import chromedriver_path service = Service(executable_path=chromedriver_path) driver = webdriver.Chrome(service=service)
pip install --upgrade chromedriver-py
Check Chrome version via chrome://settings/help, then install matching chromedriver-py version (e.g., 114.x for Chrome 114).