前提・実現したいこと
プログラミング始めて1カ月も満たない初心者です。
用語とかあまり分かっていないので変な言葉を使っていましたらすみません。
JpyterLabでwebスクレイピングを実際に試してみようと思い、Chromeを開くだけのコードを入力して実行したのですが、下記のようなエラーが出てしまいうまくいきませんでした。
Dockerの中の環境で実行しています。
PCはWindows10です。
chromedriver.exeは同じ作業ディレクトリに入っていました。
Googlechromeのバージョン: 87.0.4280.141
ダウンロードしたchromedriverのバージョンは87.0.4280.88
発生している問題・エラーメッセージ
FileNotFoundError Traceback (most recent call last) ~/anaconda3/lib/python3.7/site-packages/selenium/webdriver/common/service.py in start(self) 75 stderr=self.log_file, ---> 76 stdin=PIPE) 77 except TypeError: ~/anaconda3/lib/python3.7/subprocess.py in __init__(self, args, bufsize, executable, stdin, stdout, stderr, preexec_fn, close_fds, shell, cwd, env, universal_newlines, startupinfo, creationflags, restore_signals, start_new_session, pass_fds, encoding, errors, text) 774 errread, errwrite, --> 775 restore_signals, start_new_session) 776 except: ~/anaconda3/lib/python3.7/subprocess.py in _execute_child(self, args, executable, preexec_fn, close_fds, pass_fds, cwd, env, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, restore_signals, start_new_session) 1521 err_msg += ': ' + repr(err_filename) -> 1522 raise child_exception_type(errno_num, err_msg, err_filename) 1523 raise child_exception_type(err_msg) FileNotFoundError: [Errno 2] No such file or directory: 'chromedriver.exe': 'chromedriver.exe' During handling of the above exception, another exception occurred: WebDriverException Traceback (most recent call last) <ipython-input-3-34972720f88d> in <module> ----> 1 browser = webdriver.Chrome('chromedriver.exe') ~/anaconda3/lib/python3.7/site-packages/selenium/webdriver/chrome/webdriver.py in __init__(self, executable_path, port, options, service_args, desired_capabilities, service_log_path, chrome_options, keep_alive) 71 service_args=service_args, 72 log_path=service_log_path) ---> 73 self.service.start() 74 75 try: ~/anaconda3/lib/python3.7/site-packages/selenium/webdriver/common/service.py in start(self) 81 raise WebDriverException( 82 "'%s' executable needs to be in PATH. %s" % ( ---> 83 os.path.basename(self.path), self.start_error_message) 84 ) 85 elif err.errno == errno.EACCES: WebDriverException: Message: 'chromedriver.exe' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
該当のソースコード
pip install selenium from selenium import webdriver browser = webdriver.Chrome('chromedriver.exe')
試したこと
chromedriverのバージョンが違うのかな?と思い、chromedriver87.0.4280.88を削除して
chromedriver88.0.4324.27をダウンロードしてから、もう一度上記のコードを入力してみたのですが、同じエラーが出ました。
Pathの指定もやってみたのですが解決できず。
別の方法でやってみようと思い、今度は下記のコードを入力してみました。
pip install selenium from selenium import webdriver from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager driver = webdriver.Chrome(ChromeDriverManager().install())
これで実行してみたところ、下記のエラーコードが出ました。
ValueError Traceback (most recent call last) <ipython-input-40-56e3e3917946> in <module> 2 from webdriver_manager.chrome import ChromeDriverManager 3 ----> 4 driver = webdriver.Chrome(ChromeDriverManager().install()) ~/anaconda3/lib/python3.7/site-packages/webdriver_manager/chrome.py in __init__(self, version, os_type, path, name, url, latest_release_url, chrome_type, log_level, cache_valid_range) 26 url=url, 27 latest_release_url=latest_release_url, ---> 28 chrome_type=chrome_type) 29 30 def install(self): ~/anaconda3/lib/python3.7/site-packages/webdriver_manager/driver.py in __init__(self, name, version, os_type, url, latest_release_url, chrome_type) 52 latest_release_url) 53 self.chrome_type = chrome_type ---> 54 self.browser_version = chrome_version(chrome_type) 55 56 def get_os_type(self): ~/anaconda3/lib/python3.7/site-packages/webdriver_manager/utils.py in chrome_version(browser_type) 140 version = re.search(pattern, stdout) 141 if not version: --> 142 raise ValueError(f'Could not get version for Chrome with this command: {cmd}') 143 current_version = version.group(0) 144 return current_version ValueError: Could not get version for Chrome with this command: google-chrome --version || google-chrome-stable --version
バージョンを読み取れないと出てきていろいろ調べたのですが、全くお手上げ状態です。
どうしたら、上記のエラーを解決できますでしょうか?
もしかしたら初歩的なミスをしているかもしれませんが、どなたかお分かりになりましたらご教授いただければ幸いです。
よろしくお願いします。
補足情報(FW/ツールのバージョンなど)
PC:Windows10
エディション Windows 10 Home
バージョン 20H2
インストール日 2020/12/23
OS ビルド 19042.685
エクスペリエンス Windows Feature Experience Pack 120.2212.551.0
Python3.7
Docker20.10.2
GoogleChrome87.0.4280.141
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー