I am trying to compile a simple object in IntelliJ:
object Test02 { def main(args: Array[String]) { println("Hello World"); }}
I received this message:
Error:scalac: Scala compiler JARs not found (module 'scala02'): E:\.ivy2\cache\org.scala-lang\scala-library\jars\scala-library-2.11.8.jar, E:\.ivy2\cache\org.scala-lang\scala-compiler\jars\scala-compiler-2.11.8.jar, E:\.ivy2\cache\org.scala-lang\scala-reflect\jars\scala-reflect-2.11.8.jar
I checked the project structure and checked the modules. Modules are located here:
C:/Users/asus1/.ivy2/cache/org.scala-lang/scala-compiler/jars/scala-compiler-2.11.8.jar
How can I change E: to C: / Users / asus1 /? I need to move everything to E :?
How do people manage when the project and the bank are in another place?
Seems big mistake IntellJ ...?
user5497885
source share