-3

This is the error I am getting in cmd

the pic of the error I am getting.

2 Answers2

0

Try

python -m pip install --upgrade pip

pip3 install -U pip (for Python 3.x)

pip install -U pip (for Python 2.7)

easy_install -U pip

Blay Wille
  • 46
  • 1
  • 5
0

Try this:

python -m pip install --upgrade pip --user

It's permission issue. Need to add --user flag to the command.

Hiadore
  • 686
  • 3
  • 15