After running the build and start of this topic:
you need to install webdriver-manager: $pip install webdriver-manager
.
and with that increment it should work:
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.chrome.service import Service
service = Service(ChromeDriverManager().install())
driver = webdriver.Chrome(service=service)
Hope this helps