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
wget https://downloads.lightbend.com/scala/2.12.11/scala-2.12.11.tgz | |
tar xvf scala-2.12.11.tgz | |
sudo mv scala-2.12.11 /usr/local/scala |
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
wget https://archive.apache.org/dist/spark/spark-3.0.0/spark-3.0.0-bin-hadoop3.2.tgz | |
tar xvf spark-3.0.0-bin-hadoop3.2.tgz | |
sudo mv spark-3.0.0-bin-hadoop3.2 /usr/local/spark | |
sudo cp /usr/local/spark/conf/log4j.properties.template /usr/local/spark/conf/log4j.properties |
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
export SCALA_HOME=/usr/local/scala | |
export PATH=$SCALA_HOME/bin:$PATH | |
export SPARK_HOME=/usr/local/spark | |
export PATH=$SPARK_HOME/bin:$PATH |
No comments:
Post a Comment