Scala REPL不适用于Ubuntu

时间:2018-05-14 15:54:05

标签: scala ubuntu-18.04 scala-repl

当尝试在终端中使用scala解释器时,我遇到了一个奇怪的问题,当我尝试写入时,光标不会移动,尽管按下后输入“工作”。

这是我应该看到的:

Welcome to Scala 2.11.12 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_171).
Type in expressions for evaluation. Or try :help.

scala> val x = 1
x: Int = 1

这就是我实际看到的:

Welcome to Scala 2.11.12 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_171).
Type in expressions for evaluation. Or try :help.

scala> x: Int = 1

总而言之,我看不出我写的东西。

这只发生在这个解释器上,终端的其他所有程序/功能似乎都运行正常。

在我升级到18.04并将JVM替换为8之后发生了。

1 个答案:

答案 0 :(得分:1)

升级到Scala 2.12.6后,它又开始工作了。

Welcome to Scala 2.12.6 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_171).
Type in expressions for evaluation. Or try :help.

scala> val nowISeeWhatIWrite = true
nowISeeWhatIWrite: Boolean = true

仍然不确定为什么旧版本停止工作。