Last active
April 4, 2017 20:09
-
-
Save jacksonpradolima/8d031d8eb2dcce96270175006d4d7a4b to your computer and use it in GitHub Desktop.
Install scala, apache spark and apache zeppelin
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
#!/bin/sh | |
# Install JAVA | |
wget https://gist.githubusercontent.com/jacksonpradolima/1253019d0a63b07501b767fefc3531a8/raw/d10b827ecd752106ce99649c5137c04c6e09aff0/install_java.sh | |
source install_java.sh | |
# Install some python packages and tools | |
wget https://gist.githubusercontent.com/jacksonpradolima/a7de2799142c442021a55a71bf5fcacb/raw/f509db81b114ded277014af9e2e9d1c7cc902867/install_python_components.sh | |
source install_python_components.sh | |
# Installation of scala | |
sudo apt-get install scala | |
# Install Apache Spark | |
wget https://gist.githubusercontent.com/jacksonpradolima/4fdb9c43cdeb472547bde388bf5fa355/raw/ad325cbb8ab60725eea0cc6c0f65319c0b57d004/install_spark.sh | |
source install_spark.sh | |
wget https://gist.githubusercontent.com/jacksonpradolima/6a421ee1a74143e0b180d6ad0b753aa1/raw/9534edff86815fef7e66af0fe64b44b825facd22/install_zeppelin.sh | |
source install_zeppelin.sh | |
# Clean-up | |
rm install_spark.sh | |
rm install_zeppelin.sh | |
rm install_java.sh | |
rm install_spark.sh | |
rm install_all.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment