Skip to content

Instantly share code, notes, and snippets.

@iarrup
Last active February 12, 2016 00:52
Show Gist options
  • Save iarrup/b70fc5d1c15d56bd5b3e to your computer and use it in GitHub Desktop.
Save iarrup/b70fc5d1c15d56bd5b3e to your computer and use it in GitHub Desktop.
Install Scala 2.11.7 and sbt 0.13.9
#Install Scala
wget www.scala-lang.org/files/archive/scala-2.11.7.deb
sudo dpkg -i scala-2.11.7.deb
#test scala
scala -version
#install sbt
echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 642AC823
sudo apt-get update
sudo apt-get install sbt
#test sbt
sbt version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment