WebDriverException: Message: unknown error: Chrome failed to start: exited abnormally with ChromeDriver Chrome and Selenium through Python on VPS
问题 So I have the exact same error as these posts Selenium 'Chrome failed to start: exited abnormally' error Unknown error: Chrome failed to start: exited abnormally I tried what they recommended and it didn't work. Here is my code from pyvirtualdisplay import Display from selenium import webdriver display = Display(visible=0, size=(800, 600)) display.start() options = webdriver.ChromeOptions() options.add_argument('--no-sandbox') options.add_argument('--disable-extensions') options.add_argument(