Ubuntu – How to install python 3.2 in ubuntu 13.04

13.04installationpython

I need python 3.2 for development purposes, but new ubuntu 13.04 comes with python 3.3.

is there any best practice for installing older python version into ubuntu?

Thanks

Best Answer

Use the Deadsnakes PPA, which includes a range of Python versions packaged for a range of Ubuntu versions, including 3.2 for raring.

sudo apt-add-repository ppa:fkrull/deadsnakes
sudo apt-get update
sudo apt-get install python3.2
Related Question