Been trying to install selenium Python for a while. Got the server jar and everything, but when I try to run the following command on the Python shell, I get a SyntaxError on the "install" command.
pip install -U selenium
^
SyntaxError: invalid syntax
Running Win7, Python 3.2.2
-U? As far as I can tell, that argument specifies an upgrade and not an installation. – Griffin Dec 17 '11 at 21:36import math; print(math.pi ** len("foo"))? That would fit your explanation and the error message, but I hesitate to accuse you of an error this basic. Please clarify. – delnan Dec 17 '11 at 21:36SyntaxErroris if he did it in the python interactive shell.>>> pip install -U selenium File "<stdin>", line 1 pip install -U selenium ^ SyntaxError: invalid syntax– birryree Dec 17 '11 at 21:44