Skip to content

Instantly share code, notes, and snippets.

@ChinmayPatel
ChinmayPatel / scala.sh
Last active December 8, 2016 17:26 — forked from teodorpatras/scala.sh
Install Scala and SBT Using `apt-get` on Ubuntu 16.04 (May Work For Other Ubuntu)
## updated for Ubuntu 16.04
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer
sudo apt-get remove scala-library scala # Removing scala-library was the key for me.
sudo wget www.scala-lang.org/files/archive/scala-2.11.8.deb
sudo dpkg -i scala-2.11.8.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