PythonでWebスクレイピングをしたいのですが、Javascript有効化の問題を突破する為、Selenium、chromedriverをインストールし、PATHを通すところまで完了した、はずだったのですが、PATHが通っていないというエラーが出てしまい、困っています。
前提・実現したいこと
chromedriverのPATHを通し、Seleiumを使えるようにしたい
発生している問題・エラーメッセージ
FileNotFoundError Traceback (most recent call last) ~/conda/envs/python/lib/python3.6/site-packages/selenium/webdriver/common/service.py in start(self) 75 stderr=self.log_file, ---> 76 stdin=PIPE) 77 except TypeError: ~/conda/envs/python/lib/python3.6/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) 728 errread, errwrite, --> 729 restore_signals, start_new_session) 730 except: ~/conda/envs/python/lib/python3.6/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) 1363 err_msg += ': ' + repr(err_filename) -> 1364 raise child_exception_type(errno_num, err_msg, err_filename) 1365 raise child_exception_type(err_msg) FileNotFoundError: [Errno 2] No such file or directory: '/usr/local/bin/chromedriver': '/usr/local/bin/chromedriver' During handling of the above exception, another exception occurred: WebDriverException Traceback (most recent call last) <ipython-input-42-9e1071cc12e0> in <module> 1 chrome_path = r'/usr/local/bin/chromedriver' ----> 2 driver = webdriver.Chrome(executable_path=chrome_path) ~/conda/envs/python/lib/python3.6/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: ~/conda/envs/python/lib/python3.6/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' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
該当のソースコード
Python
1chrome_path = r'/usr/local/bin/chromedriver' 2driver = webdriver.Chrome(executable_path=chrome_path)
↓別セルで以下も実行しています。
Python
1!pip install selenium 2from selenium import webdriver 3import chromedriver_binary
試したこと
chromeとインストールしたchromedriverのバージョンが一致している事を確認(87.0.4280.20)
Terminalでは、Seleniumに関してはSuccessfully installed selenium-3.141.0、chromedriverに関してはchromedriver was successfully installed!と表示されており、インストール自体は上手く行っている事を確認。
PATHはこんな感じです↓
/usr/local/bin:/Users/sakikawamura/opt/anaconda3/bin:/Users/sakikawamura/opt/anaconda3/condabin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
補足情報(FW/ツールのバージョンなど)
MacOS Catalina Ver10.15.3
Python
初学者なのでとにかく調べながら進めているのですが、どうにも詰まってしまって困っています。
何かライブラリのインストールが足りなかったりするのでしょうか。
情報が足りていない事もあるかと思いますが、どなたか助けて頂けると嬉しいです、、、