安装
使用 cs setup 安装 Scala(推荐)
要安装 Scala,建议使用 cs setup
,这是由 Coursier 提供支持的 Scala 安装程序。它会安装从命令行使用最新 Scala 版本所需的一切。
在您的终端中运行以下命令,并按照屏幕上的说明操作。
brew install coursier/formulas/coursier && cs setup
在 Apple Silicon(M1、M2 等)架构上
curl -fL https://github.com/VirtusLab/coursier-m1/releases/latest/download/cs-aarch64-apple-darwin.gz | gzip -d > cs && chmod +x cs && (xattr -d com.apple.quarantine cs || true) && ./cs setup
否则,在 x86-64 架构上
curl -fL https://github.com/coursier/coursier/releases/latest/download/cs-x86_64-apple-darwin.gz | gzip -d > cs && chmod +x cs && (xattr -d com.apple.quarantine cs || true) && ./cs setup
在您的终端中运行以下命令,并按照屏幕上的说明操作。
在 x86-64 架构上
curl -fL https://github.com/coursier/coursier/releases/latest/download/cs-x86_64-pc-linux.gz | gzip -d > cs && chmod +x cs && ./cs setup
否则,在 ARM64 架构上
curl -fL https://github.com/VirtusLab/coursier-m1/releases/latest/download/cs-aarch64-pc-linux.gz | gzip -d > cs && chmod +x cs && ./cs setup
下载并执行 基于 Coursier 的 Windows 版 Scala 安装程序,并按照屏幕上的说明操作。
请参阅 Coursier 文档,了解 如何安装和运行 cs setup
。
使用命令 scala -version
检查您的设置,它应该输出
$ scala -version
Scala code runner version 3.3.3 -- Copyright 2002-2022, LAMP/EPFL
如果这不起作用,请关闭并重新打开您的终端;否则,您可能需要注销并重新登录(或重启)才能使更改生效。
如果您刚开始使用 Scala,我们建议您阅读我们的入门指南,该指南将扩展这些细节,教您如何构建您的第一个 Scala 项目。
Scala 入门
其他安装 Scala 的方法
每个 Scala 版本都有自己的页面,列出了其他安装方法。点击上面的按钮查看完整的 Scala 版本列表,或从以下最新版本中选择。