Scala install: Difference between revisions

From wikinotes
Line 4: Line 4:
aur sync scala
aur sync scala
aur sync scala-cli    # optional scala interpreter
aur sync scala-cli    # optional scala interpreter
pacman -S jre-openjdk  # to compile/run programs you'll need a java-runtime-environment
 
# to compile/run programs you'll either:
pacman -S jre-openjdk  # minimal
pacman -S jdk-openjdk  # also acceptable, includes jre
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Archlinux -->
</blockquote><!-- Archlinux -->

Revision as of 22:09, 12 May 2024

Archlinux

aur sync scala
aur sync scala-cli     # optional scala interpreter

# to compile/run programs you'll either:
pacman -S jre-openjdk  # minimal
pacman -S jdk-openjdk  # also acceptable, includes jre