Installing pip for Python 3.4 - Mac OS X

macos, osx-mavericks, pip, python, python-2.7

Solution

I installed Python 3.4 for my Mac from this page:

https://www.python.org/download/

It installed pip automatically, but it's called `pip3`, not `pip`. Type `which pip3` at the console to find it.

Problem

as you know the Mac comes with Python pre-installed, mine has the 2.7 version. I installed Python 3.4. I installed pip using the command sudo easy_install however it gets installed to the 2.7 version of Python and all the packages i download therefore get installed to the 2.7 version. Is there a way to install pip to the Python 3.4 version? Thank you in advance!

Original source