Skip to content

Instantly share code, notes, and snippets.

@Frozenfire92
Last active October 20, 2021 20:58
Show Gist options
  • Star 29 You must be signed in to star a gist
  • Fork 13 You must be signed in to fork a gist
  • Save Frozenfire92/3627e38dc47ca581d6d024c14c1cf4a9 to your computer and use it in GitHub Desktop.
Save Frozenfire92/3627e38dc47ca581d6d024c14c1cf4a9 to your computer and use it in GitHub Desktop.
Install Scala and SBT using apt-get on Ubuntu 16.04 or any Debian derivative using apt-get
## Java
sudo apt-get update
sudo apt-get install default-jdk
## Scala
sudo apt-get remove scala-library scala
sudo wget http://scala-lang.org/files/archive/scala-2.12.1.deb
sudo dpkg -i scala-2.12.1.deb
sudo apt-get update
sudo apt-get install scala
## SBT
echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823
sudo apt-get update
sudo apt-get install sbt
@gnsiva
Copy link

gnsiva commented Oct 27, 2017

Thanks for this. By the way, you don't need the apt-get update and install after sudo dpkg -i scala-2.12.1.deb

@michielderoos
Copy link

If you run into a version error once these steps are complete, run this:
apt-get install bc openjdk-8-jre sbt -y
Needed to do this on Ubuntu Server 16.04

@aymenoss
Copy link

hello, I need to integrate sbt with scala ide, how can I make it, Thanks

@MrMic
Copy link

MrMic commented Aug 25, 2018

Which IDE ?
sbt is a build tool and much more ...

@0xnkc
Copy link

0xnkc commented Nov 8, 2018

Thank you

@ma-anitha
Copy link

I have installed the scala. But i couldnt get the Scala IDE

@ma-anitha
Copy link

My scala version is 2.12.1 and eclipse version is 3.8.1

@SeoYein
Copy link

SeoYein commented Oct 5, 2020

If someone get error below after version change ,
"[ERROR] Failed to construct terminal; falling back to unsupported
java.lang.NumberFormatException: For input string: "0x100""

you can fix this error by put "export TERM=xterm-color" in .bashrc

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