How to Install Scala on Mac
Apparently this is beneath the Scala documentation team.
- Download the most recent stable build
$> tar zxvf scala-x.x.x.final.tgz- Move the untarred directory to your preferred location; this will be SCALA_HOME
- Modify ~/.profile (or wherever you modify your PATH variable):
SCALA_HOME=/path/to/your/scala/directoryPATH=$SCALA_HOME/bin:$PATH
$> source ~/.profile- Done.
You should now be able to run the Scala interpreter ($> scala) from the command line. I've only just started with Scala so I don't know about compiling and deploying and all that good stuff yet. Hopefully that's in the documentation somewhere.