Skip to content

Instantly share code, notes, and snippets.

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 siman/c3a505cb3c7c208f817b to your computer and use it in GitHub Desktop.
Save siman/c3a505cb3c7c208f817b to your computer and use it in GitHub Desktop.
Install Scala 2.11.7 and SBT 0.13.9 using apt-get on Ubuntu 14.04 or any Debian derivative using apt-get
sudo apt-get remove scala-library scala
sudo wget www.scala-lang.org/files/archive/scala-2.11.7.deb
sudo dpkg -i scala-2.11.7.deb
sudo apt-get update
sudo apt-get install scala
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
# Then read setup instuctions for SBT:
# http://www.scala-sbt.org/0.13/tutorial/Manual-Installation.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment