Last active
August 29, 2015 14:15
-
-
Save alexandrnikitin/5a350ac888c63a27f734 to your computer and use it in GitHub Desktop.
Install sbt on Ubuntu
This file contains hidden or 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
// from the package repository | |
echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list | |
sudo apt-get update | |
sudo apt-get install sbt | |
// or from the deb package | |
wget http://dl.bintray.com/sbt/debian/sbt-0.13.7.deb | |
sudo dpkg -i sbt-0.13.7.deb | |
sudo apt-get install -f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment