Skip to content

Instantly share code, notes, and snippets.

@alexandrnikitin
Last active August 29, 2015 14:15
Show Gist options
  • Save alexandrnikitin/5a350ac888c63a27f734 to your computer and use it in GitHub Desktop.
Save alexandrnikitin/5a350ac888c63a27f734 to your computer and use it in GitHub Desktop.
Install sbt on Ubuntu
// 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