1.下载文件scala2.12.6.tgz
[root@master ~]# wget https://downloads.lightbend.com/scala/2.12.6/scala-2.12.6.tgz |
2.解压文件到指定目录
[root@master ~]# tar -xzvf scala-2.12.6.tgz -C /opt/ |
3. 编辑配置文件添加scala的配置
[root@master ~]# vim /etc/profile |
如图添加:
执行配置文件使配置生效
[root@master ~]# source /etc/profile |
4.验证:
[root@master ~]# scala -version |
5.进入scala
[root@master ~]# scala |