スキルアップを始める!

「chromedriver」のパスが見つからないようです(「–chromedriver」引数を使用して実行可能ファイルへのパスを指定してください)。または、Google Chromeブラウザがマシンにインストールされていません

Python(パイソン)
この記事は約2分で読めます。

※記事中に広告情報を含みます。

\ワードプレスのスキルアップはこちら!/ WordPress入門読本

chromedriver

chromedriverは動いている(chromeブラウザは開いてdata;,は実行されている)ので・・・

「–chromedriver」引数を使用して実行可能ファイルへのパスを指定してください。の部分に問題がありそうです。

Looks like we cannot locate the path the ‘chromedriver’ (use the ‘–chromedriver’ argument to specify the path to the executable.) or google chrome browser is not installed on your machine (exception: expected str, bytes or os.PathLike object, not NoneType)

「chromedriver」のパスが見つからないようです(「–chromedriver」引数を使用して実行可能ファイルへのパスを指定してください)。または、Google Chromeブラウザがマシンにインストールされていません(例外:想定されるstr、bytesまたはos.PathLike NoneTypeではなくオブジェクト)

gitmemory.com
Find the best information and most relevant links on all topics related to This domain may be for sale!

google_images_download.pyファイルを開きます。次のように記述されています。browser = webdriver.Chrome(chromedriver, chrome_options=options)を browser = webdriver.Chrome("D:/chromedriver_win32/chromedriver", chrome_options=options)に変更
(D:/ chromedriver_win32 /)は、Chromeファイルへのパスにする必要があります

上記では177行目と書かれていましたが、実際は251行目でした。
(先日のバッチファイルからなので順番が変わったのか>|)

次は実行できました!

まとめ

実行できました!

※スクレイピングなので、用途には注意しましょう。

ご参考下さい^o^)/

URLをコピーしました!