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

Set up Python locally on Linux

I installed Ubuntu 16.04 as everyone said developers use Linux and if I wanted to be one, I should too. Can someone help me setup Python locally, on my desktop?

1 Answer

Hi Pranav - not sure if you already figured this one out, but Ubuntu 16.04 comes with both Python 2.7 and Python 3 already installed. Now if you installed a non-standard Ubuntu image, you might have to install python, but this can be done quickly and easily with apt-get:

$ sudo apt-get install python3

Have you tried it from a terminal command-line?