前提・実現したいこと
anacondaでSeleniumを実行したい。
driver = webdriver.Chrome()
とすると以下のエラーメッセージが表示される。
発生している問題・エラーメッセージ
SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 86 Current browser version is 91.0.4472.114 with binary path C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
https://teratail.com/questions/321709
こちらをもとに
pip uninstall chromedriver-binary
pip install chromedriver-binary==91.*
とするとアンインストールはできたもの、新たにインソールするところで、以下のエラーメッセージが表示され、その後の対応がわからない。基本的なことかと思いますが、教えて頂けるますか。
発生している問題・エラーメッセージ
PackagesNotFoundError: The following packages are not available from current channels: - chromedriver-binary=91 Current channels: - https://repo.anaconda.com/pkgs/main/win-64 - https://repo.anaconda.com/pkgs/main/noarch - https://repo.anaconda.com/pkgs/r/win-64 - https://repo.anaconda.com/pkgs/r/noarch - https://repo.anaconda.com/pkgs/msys2/win-64 - https://repo.anaconda.com/pkgs/msys2/noarch To search for alternate channels that may provide the conda package you're looking for, navigate to https://anaconda.org and use the search bar at the top of the page.
回答1件
あなたの回答
tips
プレビュー