当前位置: 首页 > 面试题库 >

Python:没有名为selenium的模块

裴金鑫
2023-03-14
问题内容

在网上搜索了几个小时后,我仍未找到解决问题的答案。我正在使用Python
3.6,并且无法导入selenium。我总是收到“没有名为’selenium的模块’的消息。我尝试了一切,我首先从此网站https://pypi.python.org/pypi/selenium/3.6.0下载了selenium。

然后,我尝试了python -m pip install -U
selenium,但没有起作用。我尝试了人们说的其他一些方法,但它们也没有起作用。我正在使用Windows10。有帮助吗?


问题答案:

如前所述,您正在执行using Python 3.6以下步骤:

  • 打开Command Line InterfaceCLI)并发出命令python以检查Python是否已正确安装:

    C:\Users\username>python
    

    Python 3.6.1 (v3.6.1:69c0db5, Jan 16 2018, 17:54:52) [MSC v.1900 32 bit (Intel)]
    on win32
    Type “help”, “copyright”, “credits” or “license” for more information.

  • 确保pip工作正常:

        C:\Users\username>pip

    Usage:
      pip <command> [options]

    Commands:
      install                     Install packages.
      download                    Download packages.
      uninstall                   Uninstall packages.
      freeze                      Output installed packages in requirements format.
      list                        List installed packages.
      show                        Show information about installed packages.
      check                       Verify installed packages have compatible dependencies.
      search                      Search PyPI for packages.
      wheel                       Build wheels from your requirements.
      hash                        Compute hashes of package archives.
      completion                  A helper command used for command completion.
      help                        Show help for commands.

    General Options:
      -h, --help                  Show help.
      --isolated                  Run pip in an isolated mode, ignoring environment variables and user configuration.
      -v, --verbose               Give more output. Option is additive, and can be used up to 3 times.
      -V, --version               Show version and exit.
      -q, --quiet                 Give less output. Option is additive, and can be used up to 3 times (corresponding to WARNING, ERROR, and CRITICAL logging levels).
      --log <path>                Path to a verbose appending log.
      --proxy <proxy>             Specify a proxy in the form [user:passwd@]proxy.server:port.
      --retries <retries>         Maximum number of retries each connection should attempt (default 5 times).
      --timeout <sec>             Set the socket timeout (default 15 seconds).
      --exists-action <action>    Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
      --trusted-host <hostname>   Mark this host as trusted, even though it does not have valid or any HTTPS.
      --cert <path>               Path to alternate CA bundle.
      --client-cert <path>        Path to SSL client certificate, a single file containing the private key and the certificate in PEM format.
      --cache-dir <dir>           Store the cache data in <dir>.
      --no-cache-dir              Disable the cache.
      --disable-pip-version-check
                                  Don't periodically check PyPI to determine
                                  whether a new version of pip is available for
                          download. Implied with --no-index.
  • selenium通过pip以下方式安装最新版本:
        C:\Users\username>pip install -U selenium
    Collecting selenium
      Downloading selenium-3.8.1-py2.py3-none-any.whl (931kB)
        100% |¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦| 942kB 322kB/s
    Installing collected packages: selenium
    Successfully installed selenium-3.8.1
  • 确认Selenium已安装:
        C:\Users\username>pip freeze
    selenium==3.8.1 
  • 打开IDE(例如EclipsePyCharm)和如下编写一个简单的程序:
        from selenium import webdriver

    driver = webdriver.Firefox(executable_path="C:\\path\\to\\geckodriver.exe")
    driver.get('https://stackoverflow.com')
  • 执行Firefox Quantum将启动浏览器并对其url 进行访问的程序。

Python下载位置(Windows):

可以从以下位置下载Python(适用于Windows):

https://www.python.org/downloads/


 类似资料:
  • 问题内容: 我正在尝试编写脚本来检查网站。这是我第一次使用selenium。我正在尝试在OSX系统上运行脚本。尽管我检查了/Library/Python/2.7/site- packages并存在selenium-2.46.0-py2.7.egg,但是当我运行脚本时,它一直告诉我没有要导入的selenium模块。 这是我运行代码时得到的日志: 问题答案: 如果您已经安装了pip,则可以像这样安装s

  • 运行此selenium脚本时出错。请建议可以做些什么来修复此问题:脚本: 错误: Traceback(最近一次调用最后一次):文件"C:/用户/管理员/桌面/test2.py",第2行,来自selenium导入网络驱动程序ModuleNotFound错误:没有名为'selenium'的模块 我已经在Win7 Professional 32位上安装了Python 3.6。我有Selenium独立服务

  • 问题内容: 我正在将Django应用程序部署到开发服务器,并且在运行时遇到此错误pip install -r requirements.txt: 似乎与一起分发。最初,我认为这可能不会安装到中的Python,所以我使用以下命令将了(与Python相同的版本)安装到中的Python站点软件包: 编辑:这只发生在内部。如果我在外部打开控制台,则该控制台存在,但仍然出现相同的错误。 关于为什么不在路上的

  • 问题内容: 我刚刚通过运行在Fedora 25(64位)上安装了Python 3.6,并且我无法使用任何模块,否则Python 3.5可以正常使用,例如,PyCharm抱怨未安装安装工具,我也可以运行python3并发出: 但是,如果运行python36然后: 我反而得到: 追溯(最近一次呼叫最近):ModuleNotFoundError中的文件“”,第1行:没有名为“ aiohttp”的模块 在

  • 问题内容: 我正在运行Mac OS 10.6.8。并希望除了python 2.6之外还安装python 2.7,并在新的virtualenv中使用python 2.7。我执行了以下步骤: 我下载并安装了python 2.7: 然后,我运行命令使用python2.7设置新的virtualenv: 我的.bash_profile如下所示: 现在,当我打开控制台时,出现以下错误消息。 我还在另一篇文章中

  • 相反,我得到: Traceback(最近调用最后一次):文件“”,第1行,在ModuleNotFounderRor中:没有名为'AIOHTTP'的模块 Pip在python36上也不存在,因为Python36-M Pip抛出: /usr/bin/python36:没有名为pip的模块 我必须注意,我已经同时安装了python 3.4、3.5和3.6,3.4和3.5都可以正常工作