installing python3.3 on Ubuntu

Posted on Tue 14 January 2014 in General

my system is ubuntu 12.04 at Digital Ocean, and i am going to install python3.3 and pip3.3

here are few simple steps with which you can do so!

\$ apt-get install python-software-properties
\$ add-apt-repository ppa:fkrull/deadsnakes
\$ apt-get update
\$ apt-get install python3.3
\$ curl http://python-distribute.org/distribute_setup.py | python3.3
\$ curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python3.3

and yes. . don't forget to apply "sudo" above!!!

enjoy. ..