Skip to content

Instantly share code, notes, and snippets.

@bahmanshams
Created February 8, 2017 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bahmanshams/f3a46a77d9b57b5409d9ab9af3a79766 to your computer and use it in GitHub Desktop.
Save bahmanshams/f3a46a77d9b57b5409d9ab9af3a79766 to your computer and use it in GitHub Desktop.
Install Scala and SBT on Ubuntu 14.04
sudo apt-get remove scala-library scala
wget www.scala-lang.org/files/archive/scala-2.12.1.deb
sudo dpkg -i scala-2.12.1.deb
sudo apt-get update
sudo apt-get install scala
wget https://dl.bintray.com/sbt/debian/sbt-0.13.13.deb
sudo dpkg -i sbt-0.13.13.deb
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