Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Setting Up a Local Python Environment Installing Python and Python Libraries Locally Installing Python 3 on Mac OS X

Using osx 10.4.11 - Is there a way to install Python 3.4.2/pip3?

Is there some way via MacPorts, etc. Currently have 3.2 up & running.

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

According to macports.org it should be available. Try:

$ port search python

If it lists python34, you can install it using:

$ port install python34

pip3 should install automatically with python34

William Li
William Li
Courses Plus Student 26,868 Points

Unlike homebrew, Macports requires admin privilege to install ports, sudo is needed in the install command.