Aditi Narware
Aditi Narware

Reputation: 109

Error updating pip version on mac

While updating pip on mac using the command
pip install --upgrade pip
I am getting the following error

enter image description here


What should I do?

Upvotes: 0

Views: 83

Answers (1)

Mayur Nagekar
Mayur Nagekar

Reputation: 811

Looks like you need to run it with sudo.

sudo pip install --upgrade pip 

Upvotes: 1

Related Questions