安装selenium python时出错

时间:2011-12-18 01:24:14

标签: python selenium python-3.x

运行pip install -U selenium时出现此错误。通过脚本的中途,它获得以下SyntaxError:

    Traceback (most recent call last):
      File "<string>", line 14, in <module>
      File "C:\Python32\Scripts\build\rdflib\setup.py", line 6, in <module>
        from rdflib import __version__
      File "rdflib\__init__.py", line 64, in <module>
        from rdflib.term import URIRef, BNode, Literal, Variable
      File "rdflib\term.py", line 367
        except TypeError, te:
                        ^
    SyntaxError: invalid syntax
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

  File "<string>", line 14, in <module>

  File "C:\Python32\Scripts\build\rdflib\setup.py", line 6, in <module>

    from rdflib import __version__

  File "rdflib\__init__.py", line 64, in <module>

    from rdflib.term import URIRef, BNode, Literal, Variable

  File "rdflib\term.py", line 367

    except TypeError, te:

                    ^

SyntaxError: invalid syntax

----------------------------------------
Command python setup.py egg_info failed with error code 1

由于它是语法错误,我认为它是一个python版本问题,我正在运行3.2.2。 Pip确实附带了一个pip-3.2.exe文件,我试图运行它。但我得到了同样的错误。我对Python很陌生,所以它可能很简单。

它怎么可能是syntaxError? pip是一个已经制作的程序。

运行Win7,Python 3.2.2

1 个答案:

答案 0 :(得分:4)

Selenium不支持Python 3.请改用Python 2.7。

可悲的是,几乎所有Python软件都需要Python 2.x。

[更新]
Selenium现在支持Python 3.x.