Selenium 模块导入错误:“没有名为 'Selenium' 的模块
问题:
尝试时在 Python 3.6 中导入 Selenium 模块时,仍然出现错误消息“没有名为 'selenium' 的模块”。
解决方案:
验证Python安装:
检查 Pip 功能:
使用 Pip 安装 Selenium:
确认 Selenium 安装:
写一个测试脚本:
from selenium import webdriver driver = webdriver.Firefox(executable_path="C:\path\to\geckodriver.exe") driver.get('https://stackoverflow.com')
运行脚本:
其他提示:
以上是为什么我无法在 Python 中导入 Selenium:'No Module Named 'Selenium'”?的详细内容。更多信息请关注PHP中文网其他相关文章!