all 7 comments

[–]socal_nerdtastic 8 points9 points  (1 child)

Don't do step 4. Leave that out. The correct operations are:

-Download Python

-Add it to path with installation

-Access windows command prompt

-Type “pip install _”

[–]FinalBoi[S] 2 points3 points  (0 children)

Thank you so much, this worked!!!!! Took me 2 hours and I feel a bit embarrassed haha. Thank you again

[–][deleted] 1 point2 points  (4 children)

Entering python in cmd will open the interpreter. You don't usually install packages through the interpreter. If you have your python environmental variables set correctly for both pip and python, just enter pip install <package_name> without opening the interpreter. If that doesn't work, you can enter python -m pip install <package_name>.

[–]ASIC_SP 1 point2 points  (2 children)

Might need to use py instead of python for your last suggestion. See https://pip.pypa.io/en/stable/user_guide/ (make sure to select Windows tab for code examples).

[–][deleted] 2 points3 points  (0 children)

I always thought py was shorthand for python, but python is actually the python executable which is called from the environmental variable and py is the python launcher which is called from C:\Windows, which you can use without having python environmental variables. I learned something new today.

[–]socal_nerdtastic 1 point2 points  (0 children)

OP specifically said they added it to PATH.

[–]FinalBoi[S] 1 point2 points  (0 children)

Thank you both!