You are on page 1of 3

SCALA – 2.11.

8 INSTALLATION GUIDE
By. Mr. Gopal Krishna
Sr.Hadoop Architect
CCA 175-Spark and Hadoop Certified Consultant

STEP 1: Download scala-2.11.8.tgz from the


below url.
http://scala-lang.org/download/2.11.8.html

TEP 2: Copy the Downloaded TARBALL to


‘INSTALL’ directory [Path: /home/gopalkrishna/INSTALL]

STEP 3: Extract the copied tarball using below


command:

tar -xzvf scala-2.11.8.tgz

STEP 4: After tarball extraction, we get


below directory
scala-2.11.8/
STEP 5: Update the SCALA_HOME & PATH
Variables in bashrc file (command: nano ~/.bashrc)
# Below 2 lines we have to add for SCALA Installation

export SCALA_HOME=/home/gopalkrishna/INSTALL/scala-2.11.8
export PATH=$PATH:$SCALA_HOME/bin

STEP 6: To check the bashrc changes, open a new


terminal and type ‘echo $SCALA_HOME’ command
STEP 7: After Successful installation of SCALA, to
get into SCALA prompt, use below command
from any path

Scala

STEP 8: To Know the Installed Version of SCALA

STEP 9: To come out of scala prompt

To Print a message at SCALA Prompt

You might also like