前提・実現したいこと
PythonでSeleniumを使いWebスクレイピングしようとしたら、seleniumというモジュールが見つからないという結果が出ます。
既に、Seleniumをインストールしています。
どなたか対処法分かりますか泣
発生している問題・エラーメッセージ
Python
1 Traceback (most recent call last): 2 File "c:/Users/50715085/test/scraping.py", line 1, in <module> 3 from selenium import webdriver 4ModuleNotFoundError: No module named 'selenium'
該当のソースコード
Python
1from selenium import webdriver 2import time 3 4driver = webdriver.Chrome("") 5 6time.sleep(1)
試したこと
pip install Seleniumでもう一度Seleniumをインストールした
マシンに複数のpythonをインストールしていませんか?