Skip to content

Instantly share code, notes, and snippets.

@glnarayanan
Forked from visenger/install_scala_sbt.sh
Created June 14, 2014 19:28
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 glnarayanan/5ea734fc757adaf07046 to your computer and use it in GitHub Desktop.
Save glnarayanan/5ea734fc757adaf07046 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Updated to include the latest Scala and Sbt versions as of June 15, 2014
# Might get the older version installed
# sudo apt-get install scala
# Getting Scala from the website
wget http://www.scala-lang.org/files/archive/scala-2.11.1.deb
sudo dpkg -i scala-2.11.1.deb
# sbt installation
wget http://dl.bintray.com/sbt/debian/sbt-0.13.5.deb
sudo dpkg -i sbt-0.13.5.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment