Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how do I upgrade pip on Mac?

Tags:

python-3.x

I cannot upgrade pip on my Mac from the Terminal.

According to the documentation I have to type the command: pip install -U pip

I get the error message in the Terminal: pip: command not found

I have Mac OS 10.14.2, python 3.7.2 and pip 18.1. I want to upgrade to pip 19.2.3

like image 752
aurumpurum Avatar asked Sep 23 '19 11:09

aurumpurum


2 Answers

upgrading pip as of 09/2020:

pip3 install --upgrade pip==20.2.2
like image 181
Michael Avatar answered Oct 17 '22 13:10

Michael


pip3 install --upgrade pip


this works for me!

like image 15
Ron Avatar answered Oct 17 '22 13:10

Ron