I am using this code below
from selenium import webdriver
import chromedriver_binary
# Adds chromedriver binary to path
driver = webdriver.Chrome()
driver.get("http://www.python.org")
here is the installation I did
However, I am getting an error
SessionNotCreatedException: session not created: This version of ChromeDriver only supports Chrome version 84
It looks like in the command prompt it should be supported? Am I missing something?