chrome浏览器版本不同的chromedriver关联不上

chrome版本原本是104,结果自动更新了107,然后我下重新安装了驱动,系统也检查到是107,但是pycham里面还是读取到104,已经更新了chromedriver的驱动,系统中也能查询得到,但是就是不能关联上。

from selenium import webdriver
driver = webdriver.Chrome()
driver.get("https://www.baidu.com")

报错的结果:selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 104 Current browser version is 107.0.5304.107 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe
win7系统(公司的电脑),已经下载107的驱动,更新了chromedriver在系统中环境变量路径,也把这个文件更新在了浏览器子目录和python子目录中,但是一直无法匹配得到

img

这个提示的是chrome游览器仅支持104的版本,不支持107,你弄反了