Ubuntu – Python 3.5 has just been released, can I get it as a package for Ubuntu 15.4

aptpython

I want the very latest version of Python, but I don't want to bypass the apt package manager: I don't want to do an old-school source install because that can make it harder to uninstall when the official packages come out.

Python3.5 is not currently featured in any of Canonical's package repositories, which means I cannot just "apt-get install python3.5".

Is there a way to get Python3.5 installed on my PC in the meantime?

Best Answer

Before Ubuntu adds python 3.5 to the official repositories you have two options to install it now :

  • Check if someone has come with a PPA containing python 3.5 so that you can install/remove it using apt-get or other package manager

  • Install from source

As fas as i can see there is no such PPA available till date so your only option is to install from source file.


You have said :

I don't want to do an old-school source install because that can make it harder to uninstall when the official packages come out.

Perhaps you have not heard of checkinstall yet, it creates a package out of the files that are going to be saved on different places in your computer at the last step of compiling a package from source (sudo make install). So you just need to replace sudo make install with sudo checkinstall and then you can remove the package you named using any package manager in the usual manner.

Check man checkinstall to get more idea.


Update:

A PPA is now available. Check this answer.