Reputation: 33
I'm trying to install PIP for python but can't seem to understand how. I know I will probably be slated for not understanding, but I'm completely lost! If I follow the address given by python, get-pip.py - I get sent to a random page with lots of binary data, if i type that code into cmd I'm told that get is not defined or it is not an internal or external command that is recognised. I'm really stuck, any help would be appreciated!
Upvotes: 1
Views: 2650
Reputation: 514
Try to install pip again using following steps:
python get-pip.py
System Properties / Advanced tab
, click Environment Variables
to open User Variables
and System Variables
PATH ENVIRONMENT VARIABLE
Upvotes: 2
Reputation: 809
EX:-
cd C:\Users\[user]\AppData\Local\Programs\Python\Python36-32
Then download get-pip.py and copy to the python installed location(Above location)
Run the following command in your cmd
python get-pip.py
Check Pip installed. using
python -m pip -V
Upvotes: 0