Message: ‘chromedriver‘ executable may have wrong permissions.

今天运行项目遇到如下代码

driver=webdriver.Chrome(chrome_driver, chrome_options=options)

上述代码运行报错如下:

Message: 'chromedriver' executable may have wrong permissions. Please see https://sites.google.com/a/chromium.org/chromedriver/home

出错的原因大概率出在chromedriver上。
首先根据代码中的chrome_driver检查是否有chromedriver,如果有的话那应该是版本问题。如果没有,以及版本问题都要根据google-chrome的版本下载对应的chromedriver。
使用如下命令检查google-chrome的版本

$ google-chrome --version

在这里插入图片描述
我的版本是116.0.5845.96,如果是114以前的版本可以在如下连接找chromedriver。114以后的则需要在如下链接chromedriver116。
下载上传到对应的chrome_driver路径解压即可。

你可能感兴趣的:(常见错误,python基础,linux,python)