Created
December 25, 2021 18:52
-
-
Save Zeyu-Li/0a6c65e4b9e59865cc96ad93e8f0b29a to your computer and use it in GitHub Desktop.
Install new Scala
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-get update | |
sudo apt-get install default-jdk | |
## Scala | |
sudo apt-get remove scala-library scala | |
sudo wget https://downloads.lightbend.com/scala/2.13.6/scala-2.13.6.deb | |
sudo dpkg -i scala-2.13.6.deb | |
sudo apt-get update | |
sudo apt-get install scala |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Modified from https://gist.github.com/malzzz/15639fc36d069490b7709be2f3a4d522