Skip to content Skip to sidebar Skip to footer

How To Install Pip On Python 3.6, Not The Default Python 2.7?

So all day, I have been trying to install pip. I've executed curl https://bootstrap.pypa.io/get-pip.py > get-pip.py. Then sudo python get-pip.py. Next I went to install numpy wi

Solution 1:

You shouldn't delete the system python. Delete nothing in /Library/Python or it's subfolders.

How did you install python 3.6? Usually, it'll be installed as python3.6 with a symlink to python3. pip3 is usually installed with it.

So what you probably wanted to do was:

pip3 install numpy
python3
>>>import numpy

Post a Comment for "How To Install Pip On Python 3.6, Not The Default Python 2.7?"