-
-
Save GRoguelon/ddc7c8e8599ce0b1e07c to your computer and use it in GitHub Desktop.
Install Scala & sbt on Debian/Ubuntu
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
#!/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://downloads.typesafe.com/scala/2.11.2/scala-2.11.2.deb | |
sudo dpkg -i scala-2.11.2.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.5.deb | |
sudo dpkg -i sbt-0.13.5.deb | |
sudo apt-get update | |
sudo apt-get install sbt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment