The best way to kill a snake is to stomp it with your boot.
To install python and have it configured with pip, virtualenv, simply run the following
Clone this repo
git clone https://github.com/tchoedak/python_bootstrap.gitIf git isn't available in your machine, use wget and download the zip
wget https://github.com/tchoedak/python_bootstrap/archive/master.zip
unzip master.zipInstall
cd python_bootstrap
./installFirst load the environment
cd python_bootstrap
source .envCreate a new virtualenv called bobbys_playground
virtualenv bobbys_playground
source bobbys_playground/bin/activateInstall a package within that virtual environment
pip install paramikoDelete the local installation of python and any files in the tmp directory
./cleanup
