Reputation: 109
While updating pip on mac using the command
pip install --upgrade pip
I am getting the following error
What should I do?
Upvotes: 0
Views: 83
Reputation: 811
Looks like you need to run it with sudo.
sudo pip install --upgrade pip
Upvotes: 1