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 !
Go Futher
Note that in python 3.3, venv will be available (http://docs.python.org/3/library/venv.html)
Comments