Skip to content

Instantly share code, notes, and snippets.

View GRoguelon's full-sized avatar
🌮

Geoffrey Roguelon GRoguelon

🌮
View GitHub Profile
@GRoguelon
GRoguelon / install_scala_sbt.sh
Last active August 29, 2015 14:04 — forked from visenger/install_scala_sbt.sh
Install Scala & sbt on Debian/Ubuntu
#!/bin/sh
# one way (older scala version will be installed)
# sudo apt-get install scala
#2nd way
sudo apt-get remove scala-library scala
wget http://downloads.typesafe.com/scala/2.11.2/scala-2.11.2.deb
sudo dpkg -i scala-2.11.2.deb
sudo apt-get update