首页 > 代码库 > Scala的下载安装

Scala的下载安装

  • Scala官网

  1. 地址:http://www.scala-lang.org/download/
    • 三选一 

      • Download Scala 2.11.4 binaries for your system
        • 直接安装Scala
      • Get started with Typesafe Activator Typesafe Activator is a browser-based or command-line tool that helps developers get started with Scala。
        • 不知道什么东东,但说的好像是支持Play Framework, Akka and Scala的运行
        • http://www.typesafe.com/platform/getstarted?_ga=1.160890811.747405756.1416813759
      • Install one of the Scala IDEsThe Scala IDE (based on Eclipse), IntelliJ IDEA with the Scala plugin,or NetBeans IDE with the Scala plugin.
        • 安装集成在IDE的支持工具
  • 51cto十二步学会Scala

    1. 地址:http://developer.51cto.com/art/200909/154647.htm
    2. 本Scala快速入门参考了《First Steps to Scala》的内容。下面开始:

      我先大致根据这篇文章写一些自己的理解,让想学Scala的同学有个感性认识。

      读者对象:有Java经验的工程师

      第一步:下载和安装Scala

      在官网下载并接压缩,像安装ANT或MAVEN之类的那样,把解压后的bin路径加到path里面去就可以了。

      在命令行模式下输入Scala

      cmd 写道

      1. C:\Documents and Settings\19002850>scala  
      2. Welcome to Scala version 2.7.5.final (Java HotSpot(TM) Client VM, Java 1.6.0_13)  
      3. .  
      4. Type in expressions to have them evaluated.  
      5. Type :help for more information.  
      6.  
      7. scala>  
      8.  

      如果你看到scala提示符,那么恭喜你,说明Scala安装成功了。

 

Scala的下载安装