As stated in my comment, you'll want to add export
PATH=$PATH:/full/path/to/activator/directory to your .bashrc file.
and
activator clean compile
from the play application folder worked for me.
then
activator run
However you also want to fix the version of scala-compiler use,
and you want it to match your configured scalaVersion:
dependencyOverrides += "org.scala-lang" % "scala-compiler" % scalaVersion.value
本文指导如何在项目中解决Scala版本冲突,并通过配置`.bashrc`文件及使用Activator命令来确保Scala环境的一致性。重点介绍了如何在特定应用目录下运行激活清理编译流程,同时调整依赖版本以匹配已配置的Scala版本。
486

被折叠的 条评论
为什么被折叠?



