前提・実現したいこと
会社のlinuxサーバー上のjupyter labにて、ローカルで書いていたseleniumを使ったスクレイピングのコードを実行したいのですが、chrome driverが使えなくて困っています。
linux64版のchrome driverの最新バージョン(ChromeDriver 93.0.4577.15)を公式サイトから直接インストールし、chromedriver_linux2という名前で作業ディレクトリに置いています。
該当のソースコード
python3
1from selenium import webdriver 2from selenium.webdriver.chrome.options import Options 3 4# オプション指定 5options = Options() 6options.add_argument('--disable-gpu'); 7options.add_argument('--disable-extensions'); 8options.add_argument('--proxy-server="direct://"'); 9options.add_argument('--proxy-bypass-list=*'); 10options.add_argument('--start-maximized'); 11options.add_argument('--headless'); 12 13driver = webdriver.Chrome(executable_path='/home/jovyan/chromedriver_linux2',options=options) 14driver.get("https://www.google.com/")
発生している問題・エラーメッセージ
--------------------------------------------------------------------------- WebDriverException Traceback (most recent call last) /tmp/ipykernel_145/3439268704.py in <module> 11 options.add_argument('--headless'); 12 ---> 13 driver = webdriver.Chrome(executable_path='/home/jovyan/chromedriver_linux2',options=options) 14 driver.get("https://www.google.com/") ~/.local/lib/python3.8/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) 74 75 try: ---> 76 RemoteWebDriver.__init__( 77 self, 78 command_executor=ChromeRemoteConnection( ~/.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py in __init__(self, command_executor, desired_capabilities, browser_profile, proxy, keep_alive, file_detector, options) 155 warnings.warn("Please use FirefoxOptions to set browser profile", 156 DeprecationWarning, stacklevel=2) --> 157 self.start_session(capabilities, browser_profile) 158 self._switch_to = SwitchTo(self) 159 self._mobile = Mobile(self) ~/.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py in start_session(self, capabilities, browser_profile) 250 parameters = {"capabilities": w3c_caps, 251 "desiredCapabilities": capabilities} --> 252 response = self.execute(Command.NEW_SESSION, parameters) 253 if 'sessionId' not in response: 254 response = response['value'] ~/.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py in execute(self, driver_command, params) 319 response = self.command_executor.execute(driver_command, params) 320 if response: --> 321 self.error_handler.check_response(response) 322 response['value'] = self._unwrap_value( 323 response.get('value', None)) ~/.local/lib/python3.8/site-packages/selenium/webdriver/remote/errorhandler.py in check_response(self, response) 240 alert_text = value['alert'].get('text') 241 raise exception_class(message, screen, stacktrace, alert_text) --> 242 raise exception_class(message, screen, stacktrace) 243 244 def _value_or_default(self, obj, key, default): WebDriverException: Message: unknown error: cannot find Chrome binary
試したこと
- chmodコマンドで権限付与しました
- chrome driverの他のバージョンを試しました
- pip install chromedriver-binaryでのダウンロードを試しましたが、うまくいきませんでした
補足情報
今までローカルもしくはgoogle colabでしか作業したことがなく、知識不足により的外れな質問になっているかもしれませんが、ご助言いただけると幸いです。
また、実現したいのは会社のサーバー上でのスクレイピング処理なので、他のアプローチなどあれまそちらもお教えいただけると幸いです。
よろしくお願いいたします。

回答1件
あなたの回答
tips
プレビュー