Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

The description here says that 12.04 ships with python 3.2.3 as well. What command do I run to get this? Running python -v or python2 -V or python2.7 -V all give me the same result 2.7.3. There are no other commands with the name python available. Do I have to install it?

Note: I am not interested in setting python 3.2 as my default interpreter, I just want to know that if it ships, what command runs it.

share|improve this question

1 Answer

up vote 17 down vote accepted
sudo apt-get install python3

Then

python3
share|improve this answer
Thanks, I guess I do have to install it and it doesn't really come installed. – Ubuntu_kwr May 10 '12 at 3:16
Yeah, I checked it when I saw your post. It was not installed on my 64bit system by default. I havent checked my 32bit laptop yet. – Matt Barnes May 10 '12 at 3:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.