前提・実現したいこと
PythonでChromedriverを起動したいのですが、FileNotFoundErrorの表記が出てしまいます。
他の質問者さんの投稿と回答を参考に、Chromedriverをインストールしてみましたが、PATHの通し方がわからず詰まっております。
Macを使用しており、Seleniumはpipにてインストールしました。
非常に初学者ゆえ、もし他の箇所で誤りあれば申し訳ありませんが、よろしくお願いいたします。
発生している問題・エラーメッセージ
FileNotFoundError: [Errno 2] No such file or directory: 'chromedriver': 'chromedriver'
該当のソースコード
Traceback (most recent call last): File "/opt/anaconda3/lib/python3.7/site-packages/selenium/webdriver/common/service.py", line 76, in start stdin=PIPE) File "/opt/anaconda3/lib/python3.7/subprocess.py", line 800, in __init__ restore_signals, start_new_session) File "/opt/anaconda3/lib/python3.7/subprocess.py", line 1551, in _execute_child raise child_exception_type(errno_num, err_msg, err_filename) FileNotFoundError: [Errno 2] No such file or directory: 'chromedriver': 'chromedriver' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "×××××", line 12, in <module> browser = webdriver.Chrome() File "/opt/anaconda3/lib/python3.7/site-packages/selenium/webdriver/chrome/webdriver.py", line 73, in __init__ self.service.start() File "/opt/anaconda3/lib/python3.7/site-packages/selenium/webdriver/common/service.py", line 83, in start os.path.basename(self.path), self.start_error_message) selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
試したこと
コード最下部にある参照URLよりChromeのバージョンに合わせたChromedriverをインストールしました。