Last active
August 29, 2015 14:03
-
-
Save kazuhito-m/91f1205c877b91ea51d6 to your computer and use it in GitHub Desktop.
Latest Scala (and sbt) install for ubuntu memo.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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