I cannot figure out how to get the correct version of pip3 on my Mac as the default. I installed and use Python3 via brew:
❯ which python3
/usr/local/bin/python3
❯ ls -l /usr/local/bin/python3
<ELIDED> /usr/local/bin/python3 -> ../Cellar/python@3.9/3.9.10/bin/python3
but pip3 defaults to what looks like the Mac default Python:
❯ pip3 --version
pip 20.2.3 from /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages/pip (python 3.8)
How would I go about fixing this?