2016年7月27日水曜日

debian で scala をセットアップする 2016年7月版

手順は一般的ですが、まとまったのがなかった。

2016年7月現在、Scala は、Java8を使ってます。DebianでJava8のインストール方法を検索すると、若干古いので、まとめました。

どちらもごく一般的な手順です。

Java8 のインストール

参考ページ(Ubuntu)

$ sudo apt-get update
$ sudo apt-cache search jdk
$ apt-get install openjdk-8-jdk
$ javac -version

Scalaのセットアップ

ScalaはActivatorを使ってセットアップします。

Activator のzip をダウンロードしてパスを通します。

画面からダウンロードします。 以下はコマンド例です。

# zipファイルのurlを確認
$ curl -sL http://www.lightbend.com/activator/download | egrep -o "\"https.*activator.*.zip\""
# zipをダウンロード
$ curl -L ${上記のurl}
# unzip する
$ unzip ${上記のzip}
$ cd ${上記のdir}
$ chmod +x bin/activator
$ sudo ln -s /full_path/to/activator /usr/local/bin/activator
$ rehash
$ cd ~ && activator new
$ cd ${project_name}
$ activator test

1行でダウンロードして、unzip

# curl -L $(curl -sL http://www.lightbend.com/activator/download | egrep -o "\"https.*activator.*.zip\"" | grep -v "minimal" | sed 's/"//g') -o $(basename $(curl -sL http://www.lightbend.com/activator/download | egrep -o "\"https.*activator.*.zip\"" | grep -v "minimal" | sed 's/"//g')) && unzip !$

良きDebian & Scala Life を!

0 件のコメント:

コメントを投稿