Installation
First you need to install sbt.
Mac1
Homebrew
$ brew install sbt
Macports
$ port install sbt
Windows2
Download the msi installer and install it or download the ZIP or TGZ package and expand it.
Linux3
Ubuntu / Debian
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-get update
sudo apt-get install sbt
RHEL / CentOS
curl https://bintray.com/sbt/rpm/rpm | sudo tee /etc/yum.repos.d/bintray-sbt-rpm.repo
sudo yum install sbt
Test installation
When you have installed sbt you should be able to run the sbt
command on your shell.
sbt -help
1. installing sbt on mac ↩
2. intstalling sbt on windows ↩
3. installing sbt on linux ↩