#SCALA 설치하는 방법

SCALA_VERSION="2.11.7"

wget http://downloads.typesafe.com/scala/${SCALA_VERSION}/scala-${SCALA_VERSION}.tgz
tar -xzvf scala-${SCALA_VERSION}.tgz
rm -rf scala-${SCALA_VERSION}.tgz
echo "export SCALA_HOME=/home/ec2-user/scala-${SCALA_VERSION}" >> ~/.bashrc
echo "export PATH=$PATH:/home/ec2-user/scala-${SCALA_VERSION}/bin" >> ~/.bashrc
source ~/.bashrc

 

 

 

 


#SBT 설치하는 방법

 

curl https://bintray.com/sbt/rpm/rpm | sudo tee /etc/yum.repos.d/bintray-sbt-rpm.repo
sudo yum install sbt

 

 

 

https://gist.github.com/anthonymichaelson/09149289be776d8a236ebb6fe32d398e

 

Amazon Linux Scala and SBT Install

Amazon Linux Scala and SBT Install. GitHub Gist: instantly share code, notes, and snippets.

gist.github.com

 

+ Recent posts