Skip to content

Instantly share code, notes, and snippets.

@jreiher2003
Last active March 8, 2018 01:18
Show Gist options
  • Save jreiher2003/81151f2fd8a66c7ad5db27e36ab75f83 to your computer and use it in GitHub Desktop.
Save jreiher2003/81151f2fd8a66c7ad5db27e36ab75f83 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
sudo apt-get update -y
sudo apt-get autoremove -y
sudo apt-get upgrade -y
sudo apt-get install python-pip -y
pip install -U pip
sudo apt-get install python-virtualenv -y
sudo apt-get install python-dev -y
sudo apt-get install libpq-dev -y
sudo apt-get install build-essential -y
sudo apt-get install git -y
pip install --upgrade setuptools
export LC_ALL=C
export AIRFLOW_HOME=~/airflow
pip install airflow
wget https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash
wget https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh
wget https://www.udacity.com/api/nodes/3333158951/supplemental_media/bash-profile-course/download
cat download >> .bashrc
rm download
git config --global user.name "Jeff Reiher"
git config --global user.email "jreiher2003@yahoo.com"
git config --global push.default upstream
git config --global merge.conflictstyle diff3
git config --global credential.helper 'cache --timeout=10000'
git config --global core.autocrlf true
echo "set up complete"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment