Last active
March 8, 2018 01:18
-
-
Save jreiher2003/81151f2fd8a66c7ad5db27e36ab75f83 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 "[email protected]" | |
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