1
2

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 1 year has passed since last update.

python chromedriverのpathを通せなくて困った話し

Last updated at Posted at 2022-10-23

python3でselenium chromedriverをmacでインストールするのにターミナル
brew install chromedriver

で、インストールまでは良かったけど

driver = webdriver.Chrome() 〜省略〜
selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH

のエラーメッセージ
パスが通ってないのはすぐに分かったけど、
homebrewでインストールしたchromedriverがどこにあるのか見当たらず。
下記のコマンドでHomebrewにインストールされたパッケージの場所の確認ができるとのことなので実行

brew --prefix chromedriver
Error: No available formula with the name "chromedriver". Did you mean chrome-cli?

なんでー!
再インストールしたり色々やったが手も足も出ず。

こちらの記事で
import chromedriver_binaryでパスを通すと記載を見つけました。
なかなかコピペだけで出来るものでもないことを認識しました。

感謝です。

結果的に的外れだったけど参考にしたサイト
https://miyashinblog.com/chromedriver-selenium/
https://qiita.com/w5966qzh/items/4c1164bd7c611820c187
https://www.wakuwakubank.com/posts/398-mac-homebrew/
https://boardtechlog.com/2020/08/programming/seleniumchrome%E3%81%A7%E3%82%88%E3%81%8F%E4%BD%BF%E3%81%86chromeoptions%E3%81%BE%E3%81%A8%E3%82%81/
https://hacknote.jp/archives/26262/
https://doku-pro.com/chromedriver-mac-windows/

1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?