How to install python 3.x alongside with 2.y without root privileges

Viewed 11019

I'm working in a shared machine with no root privileges, but Python 2.y installed, but I would like to have both flavors of Python, also I would like to call Python 2.y just typing python (as usual) and for calling Python 3.x, type python3. I understand that this is possible because in my main equipment (whit root access, and the magic of sudo) I can "select" which one to use.

3 Answers

One can install Anaconda for python3 locally, but it seems to be a little bit overkill :)

Related