Last active
August 29, 2015 13:56
-
-
Save kamiyaowl/8884883 to your computer and use it in GitHub Desktop.
Xubuntu12.04LTS+Scala開発環境構築
This file contains 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
$sudo apt-get update | |
$sudo apt-get install vim zsh git ibus-mozc | |
#zshをデフォに | |
$which zsh | |
/usr/bin/zsh | |
$chsh | |
#GoogleDrive経由でsshやらgitとかconfigをzipでもらってunzipして配置 | |
#他適当 | |
#JDK構築 | |
$sudo add-apt-repository ppa:webupd8team/java | |
$sudo apt-get install oracle-java7-installer | |
#とりあえず動くか確認 | |
$javac Hoge.java | |
$java Hoge | |
Hello Java | |
#幸せ | |
#Scala apt-get installで入るっぽい | |
$sudo apt-get install scala | |
$scala -version | |
Scala code runner version 2.9.1 -- Copyright 2002-2011, LAMP/EPFL | |
This file contains 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
public class Test | |
{ | |
public static void main(String[] args) | |
{ | |
System.out.println("Hello Java"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment