I'm just starting out with Scala (trying to setup Eclipse, Lift and SBT on Mac Lion) and I'm not sure if I need the scala compiler through homebrew or can I just use the built in Eclipse Scala compiler through Eclipse and (if I also need to) through the Terminal.

If that's a good idea, how do I run it through the terminal ?

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

You won't be able to access the Eclipse-IDE scala compiler through terminal, so if you want terminal access, you should install a standalone scala interpreter separately.

While you don't technically need terminal access since Eclipse will compile everything for you and you can run the interpreter through Eclipse (Window -> Show View -> Scala Interpreter), I like to have the option, so I always have a separate installation of the same version of the compiler that Eclipse uses.

link|improve this answer
Thanks a lot for the answer. I thought it would be possible since Eclipse has to have the scala binaries somewhere anyways. Having the same copy is good enough anyways. – polyglot Jan 8 at 18:44
feedback

Instead if installing scala, I normally have a blank sbt project, and start the scala REPL by doing

sbt console

This allows me to easily change scala versions and if I add dependencies to the project, they will be added to the console classpath.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.