Skip to content

Instantly share code, notes, and snippets.

@osipov
Created July 21, 2014 19:12
Show Gist options
  • Save osipov/c2a34884a647c29765ed to your computer and use it in GitHub Desktop.
Save osipov/c2a34884a647c29765ed to your computer and use it in GitHub Desktop.
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
@tiendv-1114
Copy link

thank you 👍

@priteshkumbhare
Copy link

Thanks

@proguest1942
Copy link

proguest1942 commented Jun 27, 2017

  1. need to update to: sudo wget www.scala-lang.org/files/archive/scala-2.13.0-M1.deb for the latest scala version

@sarahESL
Copy link

Awesome 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment