0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[python][selenium]エラー「selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable may have wrong permissions.」

Posted at

エラー内容

pythonにて seleniumを実行しようとしたところ、下記エラーが発生。

selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable may have wrong permissions.

原因

permissionsと書かれているので、権限を確認してみる。

mba:scraping kk$ ls -l
total 49720
-rw-r--r--  1 konoken  staff  15720316 Dec  6 22:24 chromedriver

実行権限であるxが振られていないのが原因。

解決法

以下コマンドで実行権限をファイルに付与する。

chmod ugo+x chromedriver
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?