According to the official Python website, the current version of Python 2 is 2.7.10.
On my computer, I have 2.7.6:
$ python
Python 2.7.6 (default, Jun 22 2015, 18:00:18)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
I figured I'd update to 2.7.10 using apt-get. However, this doesn't work:
$ sudo apt-get install python2.7
Reading package lists... Done
Building dependency tree
Reading state information... Done
python2.7 is already the newest version.
apt-get is telling me that I already have the newest version.
What gives?