学习Python。但我没有模块命名 selenium 错误。下面是我的代码:
from selenium import webdriver from time import sleep chromeOptions = webdriver.ChromeOptions() chromeOptions.add_argument("--incognito")```
字符串
jgovgodb1#
如果您得到**错误ModuleNotFoundError:没有名为“selenium”的模块,您可以尝试手动导入它。您应该获得设备中“selenium”的确切路径(例如,通过使用命令pip install selenium,您应该看到以下行:* 已满足的要求:selenium in c:\users\Name...*)。复制此路径并在python脚本中使用它:
pip install selenium
import sys sys.path.append('paste-here-your-path')
字符串然后您可以继续执行代码
zwghvu4y2#
确保已安装selenium模块。您可以通过在系统终端/命令提示符下运行pip install selenium来完成此操作
2条答案
按热度按时间jgovgodb1#
如果您得到**错误ModuleNotFoundError:没有名为“selenium”的模块,您可以尝试手动导入它。您应该获得设备中“selenium”的确切路径(例如,通过使用命令
pip install selenium
,您应该看到以下行:* 已满足的要求:selenium in c:\users\Name...*)。复制此路径并在python脚本中使用它:字符串
然后您可以继续执行代码
zwghvu4y2#
确保已安装selenium模块。您可以通过在系统终端/命令提示符下运行
pip install selenium
来完成此操作