pip installing the Granta STK isn't working
James Derrick
Administrator, Employee Posts: 269
admin
I've followed the instructions and run pip install, but I keep getting syntax errors. What's going on?
Tagged:
0
Answers
-
pip install
is not a python command.Rather than running it in the python interpreter you want to run either
pip install etc.etc.whl
orpython -m pip install etc.etc.whl
in the command prompt. I.e. before running
python
and entering the interpreter.Hope that helps!
2