Created
February 6, 2018 21:09
-
-
Save jreiher2003/fb200b0063ad05aac81bd860385e2b4d 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-add-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer -y | |
wget http://apache.osuosl.org/zeppelin/zeppelin-0.7.3/zeppelin-0.7.3-bin-all.tgz | |
tar xvf zeppelin* | |
sudo apt-get install python-pip -y | |
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 | |
sudo apt-get install libpq-dev libxml2-dev libxslt1-dev libldap2-dev libsasl2-dev libffi-dev -y | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment