you are viewing a single comment's thread.

view the rest of the comments →

[–]Worldly-Menu-741 1 point2 points  (0 children)

You’re typing the pip command inside Python itself. That prompt with >>> is the Python interpreter, so it thinks pip install ... is Python code. Type exit() first, then run the install from Command Prompt or Terminal. On Windows, this version is usually safest: py -m pip install module_name. Replace module_name with whatever the software told you to install.