one line installation of apt-get basics.

This commit is contained in:
Ivan Malison 2014-10-10 18:54:49 -07:00
parent 5be88c10e6
commit 158f8391f3

View File

@ -9,11 +9,7 @@ function fedora() {
function debian() { function debian() {
local INSTALL_COMMAND='sudo apt-get -y install' local INSTALL_COMMAND='sudo apt-get -y install'
hash apt-get &>/dev/null || (echo 'apt-get is missing.' && exit) hash apt-get &>/dev/null || (echo 'apt-get is missing.' && exit)
$INSTALL_COMMAND build-essential $INSTALL_COMMAND build-essential git python python-dev python-pip
$INSTALL_COMMAND git
$INSTALL_COMMAND python
$INSTALL_COMMAND python-dev
$INSTALL_COMMAND python-pip
} }
function brew_for_multiple_users() { function brew_for_multiple_users() {