Skip to content

Instantly share code, notes, and snippets.

@hawkup
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hawkup/e0672e9d9d78d0c9fd0c to your computer and use it in GitHub Desktop.
Save hawkup/e0672e9d9d78d0c9fd0c to your computer and use it in GitHub Desktop.
Install Scala on Ubuntu 14.04
  • download unzip file
wget http://downloads.typesafe.com/scala/2.11.6/scala-2.11.6.tgz
  • unzip file
tar xvf scala-2.11.6.tgz -C /usr/local/share
  • export PATH
export SCALA_HOME=/usr/local/share/scala-2.11.6
export PATH=$PATH:$SCALA_HOME/bin
  • run scala interpreter
scala

Referrence: http://www.scala-lang.org/download/install.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment