Skip to content

Instantly share code, notes, and snippets.

@bzamecnik
Created September 29, 2016 14:00
Show Gist options
  • Save bzamecnik/cd60483b2eca517ff17e20178ad4ba11 to your computer and use it in GitHub Desktop.
Save bzamecnik/cd60483b2eca517ff17e20178ad4ba11 to your computer and use it in GitHub Desktop.
Installing Apache Spark 2.0.0 on Ubuntu 15.10
# https://spark.apache.org/downloads.html
# https://spark.apache.org/docs/latest/
# download
wget http://d3kbcqa49mib13.cloudfront.net/spark-2.0.0-bin-hadoop2.7.tgz
# verify the checksum
curl http://www.apache.org/dist/spark/spark-2.0.0/spark-2.0.0-bin-hadoop2.7.tgz.md5
md5sum spark-2.0.0-bin-hadoop2.7.tgz
# extract
tar -xzf spark-2.0.0-bin-hadoop2.7.tgz
# add the bin directory to $PATH
echo 'export PATH=$PATH:'"$(pwd)/spark-2.0.0-bin-hadoop2.7/bin" >> ~/.profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment