Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing pip for Python 3.4 - Mac OS X

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!

like image 727
user2962856 Avatar asked Dec 19 '22 15:12

user2962856


1 Answers

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.

like image 89
Ian Phillips Avatar answered Dec 31 '22 12:12

Ian Phillips