-
-
Save nmfzone/2dc02fb73f30c47faf39005bd21d6331 to your computer and use it in GitHub Desktop.
Install Scala 2.11.8 and sbt 13.11 in Ubuntu 14.04
This file contains hidden or 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
# Scala Installation | |
wget www.scala-lang.org/files/archive/scala-2.11.8.deb | |
sudo dpkg -i scala-2.11.8.deb | |
# sbt Installation | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment