Skip to content

Instantly share code, notes, and snippets.

View akashsethi24's full-sized avatar
🎯
Focusing

Akash Sethi akashsethi24

🎯
Focusing
View GitHub Profile
@akashsethi24
akashsethi24 / gist:2a35463c3c1245583fc9
Created March 12, 2016 04:12 — forked from osipov/gist:c2a34884a647c29765ed
Install Scala and SBT 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.10.4.deb
sudo dpkg -i scala-2.10.4.deb
sudo apt-get update
sudo apt-get install scala
wget http://scalasbt.artifactoryonline.com/scalasbt/sbt-native-packages/org/scala-sbt/sbt/0.12.4/sbt.deb
sudo dpkg -i sbt.deb
sudo apt-get update
sudo apt-get install sbt