Curiously Chase

installing pip with Homebrew

how to install pip with Homebrew on MacOS.

To install pip with a Homebrew installed version of python3, run:

python3 -m pip install --upgrade setuptools

In order to use the binaries that pip installed, I also added this to my PATH in my .zshrc:

PATH=$USER/Library/Python/3.8/bin:$PATH
export PATH
Share on Twitter