Skip to content

Instantly share code, notes, and snippets.

@mbonaci
Last active July 6, 2021 17:07
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save mbonaci/eb0a1981628553bdb846 to your computer and use it in GitHub Desktop.
Save mbonaci/eb0a1981628553bdb846 to your computer and use it in GitHub Desktop.
Install Scala 2.10.4 and Sbt 0.13.8 on Ubuntu 14.04 (Spark)
sudo wget www.scala-lang.org/files/archive/scala-2.10.4.deb
sudo dpkg -i scala-2.10.4.deb
# in case of unmet libjansi-java dependency fire:
# sudo apt-get install -f
sudo apt-get install curl
wget https://dl.bintray.com/sbt/debian/sbt-0.13.8.deb
sudo dpkg -i sbt.deb
@MitchTalmadge
Copy link

Note for future visitors: bintray is dead; need a new source.

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