SBT
1.1、SBT简介
short for:Simple Build Tool
是什么 ?:a simple build tool for Scala, Java, and more.
开发语言:Scala
官方主页:http://www.scala-sbt.org
源码仓库:https://github.com/sbt/sbt
1.2、通过包管理器安装SBT
操作系统包管理器安装命令
allsdkmansdk install sbt
Windowsscoopscoop install sbt
WindowsChocolateychoco install -y sbt
macOSHomeBrewbrew install sbt
GNU/LinuxHomeBrewbrew install sbt
aptsudo apt-get install -y sbt
CentOSyumsudo yum install -y sbt
dnfsudo dnf install -y sbt
Alpine Linuxapksudo apk add sbt

Arch Linux

ArcoLinux

Manjaro Linux

pacmansudo pacman -Syyu --noconfirm
sudo pacman -S    --noconfirm sbt
1.3、通过下载编译好的二进制压缩包安装SBT

step1、安装依赖

所有时Terminal + Shell
下载时cURL
解压时unzip
运行时JRE | JDK

step2、使用curl命令下载编译好的SBT二进制压缩包 (

curl -LO https://github.com/sbt/sbt/releases/download/v1.4.9/sbt-1.4.9.zip

step3、使用unzip解压SBT压缩包

unzip sbt-1.4.9.zip

step4、配置环境变量

export PATH=$SBT_HOME/bin:$PATH
1.4、sbt命令