I've followed the instructions and run pip install, but I keep getting syntax errors. What's going on?
pip install is not a python command.
pip install
Rather than running it in the python interpreter you want to run either pip install etc.etc.whl or python -m pip install etc.etc.whl
pip install etc.etc.whl
python -m pip install etc.etc.whl
in the command prompt. I.e. before running python and entering the interpreter.
python
Hope that helps!