Skip to content

Instantly share code, notes, and snippets.

@mxttwoods
Forked from bkasper/scala_2.11.6_install.sh
Created July 22, 2021 18:32
Show Gist options
  • Select an option

  • Save mxttwoods/9f43d030a76fc11a3c1c8c5f0ca7452c to your computer and use it in GitHub Desktop.

Select an option

Save mxttwoods/9f43d030a76fc11a3c1c8c5f0ca7452c to your computer and use it in GitHub Desktop.
Installing Scala 2.11.6 on a fresh CentOS 6.5 image.
#!/bin/bash
#
# Installs Scala 2.11.6 on a fresh CentOS 6.5 image.
sudo yum update -y
sudo yum install -y wget
# Scala
wget http://www.scala-lang.org/files/archive/scala-2.11.6.tgz
tar xvf scala-2.11.6.tgz
sudo mv scala-2.11.6 /usr/lib
sudo ln -s /usr/lib/scala-2.11.6 /usr/lib/scala
echo "export PATH=$PATH:/usr/lib/scala/bin" >> ~/.bashrc
rm scala-2.11.6.tgz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment