A Python script that installs all development tools I need (and more...) to work on my Linux Mint workstation.
sudo apt-get install wget
sudo apt-get install python2.7
sudo apt-get install -y gcc
curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
sudo chmod +x get-pip.py
sudo ./get-pip.py
sudo pip install Fabric==1.13.1
sudo pip install PyYAML==3.12