Forked from Frozenfire92/gist:3627e38dc47ca581d6d024c14c1cf4a9
Last active
August 28, 2023 14:58
-
-
Save mohnoor94/13fca10b201ade75f245948cae4870dd to your computer and use it in GitHub Desktop.
Install Scala and SBT using apt on Ubuntu or any Debian derivative using apt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Java | |
sudo apt update | |
sudo apt install default-jdk | |
## Scala | |
sudo apt remove scala-library scala | |
sudo wget http://scala-lang.org/files/archive/scala-2.12.6.deb | |
sudo dpkg -i scala-2.12.6.deb | |
## 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 update | |
sudo apt install sbt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment