0

我想在带有 Python3 的 Ubuntu 上使用 selenium。我根据说明运行以下命令:

ubuntu:~$ sudo pip-3.2 install -U selenium
Downloading/unpacking selenium
  Downloading selenium-2.37.2.tar.gz (2.6MB): 2.6MB downloaded
  Running setup.py egg_info for package selenium

Installing collected packages: selenium
  Running setup.py install for selenium

Successfully installed selenium
Cleaning up...

但是当我尝试在 python3 中导入 selenium 模块时,出现错误:

@ubuntu:~$ python3

    Python 3.2.5 (default, Sep  7 2013, 16:55:10) 
    [GCC 4.6.3] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import selenium
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    ImportError: No module named selenium
4

1 回答 1

5

您可以通过以下步骤在带有 Python3 的 Ubuntu 上使用 selenium:

  1. 用于sudo apt-get install python3-pip为 python3 安装 pip
  2. 用于sudo python3 -m pip install -U selenium为 python3 安装 selenium
于 2016-11-22T14:52:59.747 回答