It is already installed. If you ever want a "fresh" install, you can do this (but really don't need to for this tutorial):
# Hint: You don't need to do this!
# This is just an tip for the future.
brew install python
It is already installed, but you need some extras
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install python-dev
sudo apt-get install python-pip
Virtualenv helps to keep each environment for each project clearly separated
# On OSX,
# On Ubuntu you did this in an
# earlier slide already
sudo easy_install pip
sudo pip install virtualenv
sudo pip install virtualenvwrapper
echo "export WORKON_HOME=~/Envs" >> ~/.bash_profile
echo "source /usr/local/bin/virtualenvwrapper.sh" >> ~/.bash_profile
echo "export WORKON_HOME=~/Envs" >> ~/.bashrc
echo "source /usr/local/bin/virtualenvwrapper.sh" >> ~/.bashrc