Last active
August 29, 2015 14:11
-
-
Save guillaumebadin/0d1d33ce44fa31626dae to your computer and use it in GitHub Desktop.
install_sbt
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/sh | |
| # one way (older scala version will be installed) | |
| sudo apt-get install scala | |
| # sbt installation | |
| # remove sbt:> | |
| sudo apt-get purge sbt. | |
| wget http://dl.bintray.com/sbt/debian/sbt-0.13.7.deb | |
| sudo dpkg -i sbt-0.13.7.deb | |
| sudo apt-get update | |
| sudo apt-get install sbt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment