I'm currently working on a Mac with Mojave. I have successfully installed python 3.7 with brew
brew install python3
But I have tried several methods to install pip for python 3.7 (installing with get-pip.py, easy_install pip, etc.), which had worked for installing pip in the python 2.7 folder, but not in the python 3.7.
Currently when I call
pip --version
I get
pip 18.1 from /Library/Python/2.7/site-packages/pip (python 2.7)
And pip3 seems not to exist.
How can I get pip3 installed in the python 3.7 folder? Thanks!