Skip to content

Instantly share code, notes, and snippets.

@bacongobbler
Last active December 18, 2015 07:29
Show Gist options
  • Save bacongobbler/5747364 to your computer and use it in GitHub Desktop.
Save bacongobbler/5747364 to your computer and use it in GitHub Desktop.
Base installation of the tools I need in my development machine.
#!/bin/sh
PACKAGES="python-pip python-dev libpq-dev golang virtualbox virtualbox-dkms virtualbox-qt curl xchat vim"
sudo apt-get install -qy $PACKAGES
# install sublime text; requires a key to be added to the repositories
curl https://gist.github.com/bacongobbler/5747364/raw/75474b51394497f14c31ab613852391bddd016c9/sublime_text.sh | sh
# install git with config
curl https://gist.github.com/bacongobbler/5605689/raw/e9e77952ff90731dc24ad73065b2e6841fb7406c/git-install.sh | sh
# install python dependencies
sudo pip install virtualenv
#!/bin/sh
add-apt-repository ppa:webupd8team/sublime-text-2
apt-get update
apt-get install sublime-text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment