Skip to content

Instantly share code, notes, and snippets.

@visenger
Last active January 31, 2023 19:10
Star You must be signed in to star a gist
Save visenger/5496675 to your computer and use it in GitHub Desktop.
Scala and sbt installation on ubuntu 12.04
#!/bin/sh
# one way (older scala version will be installed)
# sudo apt-get install scala
#2nd way
sudo apt-get remove scala-library scala
wget http://www.scala-lang.org/files/archive/scala-2.11.4.deb
sudo dpkg -i scala-2.11.4.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.6.deb
sudo dpkg -i sbt-0.13.6.deb
sudo apt-get update
sudo apt-get install sbt
@poliu2s
Copy link

poliu2s commented Sep 11, 2014

Thanks! After installing this way though, I get duplicate sources.list entries... is anyone else getting that when doing an sudo apt-get update?

@maizy
Copy link

maizy commented Oct 2, 2014

Thanks for idea.

I've made some changes to this script for using java7 dependency instead of java6: https://gist.github.com/maizy/c4d31c1f539694f721f6
It may be useful for someone.

@bjing
Copy link

bjing commented Dec 27, 2014

Hey, you've already installed scala and sbt using the deb packages, why do you follow that with "apt-get install" of these packages?

@dunnock
Copy link

dunnock commented Mar 27, 2015

scala: scala-2.11.6.deb
sbt: sbt-0.13.8.deb

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