Skip to content

Instantly share code, notes, and snippets.

@claritee
Forked from klaeufer/install-sbt-ubuntu.sh
Last active April 2, 2017 14:24
Show Gist options
  • Save claritee/8b79a5c2fae944300031b8f91ce58eea to your computer and use it in GitHub Desktop.
Save claritee/8b79a5c2fae944300031b8f91ce58eea to your computer and use it in GitHub Desktop.
installation script for Scala, SBT and JDK 8 on Ubuntu (Codenvy)
#!/bin/sh
# installation script for Scala sbt on Ubuntu
# tested on Codenvy
sudo apt-get update
sudo apt-get install -y apt-transport-https
echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823
sudo apt-get update
sudo apt-get install -y sbt
sudo apt-get install -y scala
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment