Skip to content

Instantly share code, notes, and snippets.

@hicolour
Last active August 29, 2015 14:02
Show Gist options
  • Save hicolour/c8df0b291c687c9d71c9 to your computer and use it in GitHub Desktop.
Save hicolour/c8df0b291c687c9d71c9 to your computer and use it in GitHub Desktop.
install_latest_scala_sbt_on_ubuntu.sh
# COPY START
sudo apt-get remove scala-library scala
wget http://downloads.typesafe.com/scala/2.11.1/scala-2.11.1.deb
sudo dpkg -i scala-2.11.1.deb
sudo apt-get update
sudo apt-get install scala
wget http://dl.bintray.com/sbt/debian/sbt-0.13.5.deb
sudo dpkg -i sbt-0.13.5.deb
sudo apt-get update
sudo apt-get install sbt
# COPY END :)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment