Continuing my system cleanup, I decided to get rid of all unnecessary python packages.
The
pip2 list | awk -F ' ' '{print $1}' | grep -vE "django-paypal|boto|mercurial|MySQL-python|nltk" | xargs pip2 uninstall -y
The
-y
flag indicates confirmation of uninstallation.