Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save judeaugustinej/f15bb07f0072409bd9863654bfca4e82 to your computer and use it in GitHub Desktop.
Save judeaugustinej/f15bb07f0072409bd9863654bfca4e82 to your computer and use it in GitHub Desktop.
Installing scala in ubuntu 14.04
sudo wget www.scala-lang.org/files/archive/scala-2.12.2.deb
sudo dpkg -i scala-2.12.2.deb
sudo apt-get update
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 2EE0EA64E40A89B84B2DF73499E82A75642AC823
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