Skip to content

Instantly share code, notes, and snippets.

@npatta01
Forked from visenger/install_scala_sbt.sh
Last active September 22, 2015 21:29
Show Gist options
  • Save npatta01/c86714e927db16d7efd2 to your computer and use it in GitHub Desktop.
Save npatta01/c86714e927db16d7efd2 to your computer and use it in GitHub Desktop.
Scala and sbt installation on ubuntu 12.04
#!/bin/sh
#scala installation
sudo apt-get remove scala-library scala
wget http://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
# sbt installation
# remove sbt:> sudo apt-get purge sbt.
wget http://dl.bintray.com/sbt/debian/sbt-0.13.9.deb
sudo dpkg -i sbt-0.13.9.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