Skip to content

Instantly share code, notes, and snippets.

@kazuhito-m
Last active August 29, 2015 14:03
Show Gist options
  • Save kazuhito-m/91f1205c877b91ea51d6 to your computer and use it in GitHub Desktop.
Save kazuhito-m/91f1205c877b91ea51d6 to your computer and use it in GitHub Desktop.
Latest Scala (and sbt) install for ubuntu memo.
#!/bin/bash
# scala & sbt install
wget http://www.scala-lang.org/files/archive/scala-2.11.1.deb
wget http://dl.bintray.com/sbt/debian/sbt-0.13.5.deb
sudo apt-get -y remove scala
sudo dpkg -i scala-*.deb sbt*.deb
# conscript install
wget https://raw.github.com/n8han/conscript/master/setup.sh
chmod 755 ./setup.sh
./setup.sh
echo 'export PATH=${PATH}:~/bin' >> ~/.bashrc
source ~/.bashrc
# giter8 install
cs n8han/giter8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment