找到 Spark 的 Scala 安装
Locate Scala installation for Spark
我正在使用 EMR
并且可以启动 spark-shell
,但我想 运行 Scala REPL
。目前,当我在 shell
上键入 scala
命令时,它说:
-bash: scala: command not found
如何定位并运行Scala REPL
给出Spark
已经安装配置好?
与 一样,EMR
未随 Scala
安装。
话虽如此,我使用 this blog 中提到的步骤在 EMR
上安装了 Scala
# perform customary yum update
sudo yum update
# download Scala installer RPM
wget https://downloads.lightbend.com/scala/2.13.0-M5/scala-2.13.0-M5.rpm
# install Scala RPM
sudo yum install scala-2.12.5.rpm
我正在使用 EMR
并且可以启动 spark-shell
,但我想 运行 Scala REPL
。目前,当我在 shell
上键入 scala
命令时,它说:
-bash: scala: command not found
如何定位并运行Scala REPL
给出Spark
已经安装配置好?
与 EMR
未随 Scala
安装。
话虽如此,我使用 this blog 中提到的步骤在 EMR
Scala
# perform customary yum update
sudo yum update
# download Scala installer RPM
wget https://downloads.lightbend.com/scala/2.13.0-M5/scala-2.13.0-M5.rpm
# install Scala RPM
sudo yum install scala-2.12.5.rpm