natjohan's blog

Posted lun. 06 janvier 2014

Tip of the week 28

Install python3.2, pip and virtualenv

As Elementary is based on Ubuntu 12.04, here is the way to install python3 and pip on it :

natjohan:~$ sudo aptitude install python3
natjohan:~$ wget http://python-distribute.org/distribute_setup.py
natjohan:~$ sudo python3 distribute_setup.py
natjohan:~$ sudo easy_install-3.2 pip

And now you can use pip-3.2 to install your python3 package :

natjohan:~$ pip-3.2 install virtualenv

Let's code now !

Category: ToTW
Tags: python3 pip distribute virtualenv

Comments