前提・実現したいこと
【環境】
MacOs Bis Sur 11.0.1
Jupyterlab 2.1.5
jupyterlabで、スクレイピングの学習のために、chromedriverをインストールしようとしています。
jupyterlabで、「!brew install chromedriver」を実行すると、
「/bin/bash: brew: command not found」が返されます。
その後、
「from selenium import webdriver」
「browser = webdriver.Chrome()」を実行しても以下のエラーがでます。
おそらく、chromedriverが無いことが原因だと思います。
ターミナルで「brew install chromedriver」は実行できるのですが、
なぜjupyterlabでは通らないのでしょうか?
パスの設定が違う??
どなたか、わかる方ご教示お願いいたします。
発生している問題・エラーメッセージ
--------------------------------------------------------------------------- FileNotFoundError Traceback (most recent call last) ~/opt/anaconda3/lib/python3.8/site-packages/selenium/webdriver/common/service.py in start(self) 71 cmd.extend(self.command_line_args()) ---> 72 self.process = subprocess.Popen(cmd, env=self.env, 73 close_fds=platform.system() != 'Windows', ~/opt/anaconda3/lib/python3.8/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) 853 --> 854 self._execute_child(args, executable, preexec_fn, close_fds, 855 pass_fds, cwd, env, ~/opt/anaconda3/lib/python3.8/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) 1701 err_msg = os.strerror(errno_num) -> 1702 raise child_exception_type(errno_num, err_msg, err_filename) 1703 raise child_exception_type(err_msg) FileNotFoundError: [Errno 2] No such file or directory: 'chromedriver' During handling of the above exception, another exception occurred: WebDriverException Traceback (most recent call last) <ipython-input-6-78b07196e7cd> in <module> ----> 1 browser = webdriver.Chrome() ~/opt/anaconda3/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) 71 service_args=service_args, 72 log_path=service_log_path) ---> 73 self.service.start() 74 75 try: ~/opt/anaconda3/lib/python3.8/site-packages/selenium/webdriver/common/service.py in start(self) 79 except OSError as err: 80 if err.errno == errno.ENOENT: ---> 81 raise WebDriverException( 82 "'%s' executable needs to be in PATH. %s" % ( 83 os.path.basename(self.path), self.start_error_message) WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
該当のソースコード
Python
1!brew install chromedriver」
試したこと
ターミナルで、「brew install chromedriver」を普通に実行すると、
インストールできているようです。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/29 17:45
2020/12/29 17:50
2020/12/29 18:43
2020/12/29 19:03