4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Scalaをはじめてみるメモ MacにScalaをインストールするところから

Posted at

Scalaハンズオンに向けて予習しようかと思い試してみたメモです。
対象はMacです。

Scalaコマンドのインストール

ターミナルでscalaコマンドを実行確認するとnot foundな感じですね。

$ scala
bash: command not found: scala

ダウンロードしてきましょう。

Scala2.11.8を選択してダウンロードして解凍します。

パスを通す

僕は~/tool/にscalaフォルダを設置したのでこんな感じでexportしたり.bashrcに書き込んだりでパスを通します。

$ export PATH=$HOME/tool/scala/bin:$PATH

JDKがなかった

scalaコマンドが使えるようになりますが...

$ scala
No Java runtime present, requesting install.

JDKをインストールしろと怒られました。

こちらからJDKをダウンロードしましょう。

ライセンスの許諾をしてMacOS Xを選択してDLします。

DLしたjdk-8u91-macosx-x64.dmgを実行してscalaのインストールをします。 (時期やバージョンによってファイル名などは変動すると思います)

$ scala
Welcome to Scala 2.11.8 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_91).
Type in expressions for evaluation. Or try :help.

scala>

scalaコマンドが動きましたね!

ハローワールド

以下のファイルを作成します。 Hello Wroldです。

hello.scala
object HelloWorld {
  def main(args: Array[String]) {
    println("Hello, world!")
  }
}

hello.scalaというファイル名にしましょう。
実行します。

$ scala hello.scala

Hello, world!

これでハローワールドできましたね。

##感想

JDKをいれてなかった件はWebやってた人がScala入る時のあるあるなのかなぁって思ったりしました笑

4
6
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?