How To Install scala-apidoc on AlmaLinux 8

In this tutorial we learn how to install scala-apidoc in AlmaLinux 8. scala-apidoc is Documentation for the Scala programming language

Introduction

In this tutorial we learn how to install scala-apidoc on AlmaLinux 8.

What is scala-apidoc

Scala is a general purpose programming language for the JVM that blends object-oriented and functional programming. This package provides reference and API documentation for the Scala programming language.

We can use yum or dnf to install scala-apidoc on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install scala-apidoc.

Install scala-apidoc on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install scala-apidoc using dnf by running the following command:

sudo dnf -y install scala-apidoc

Install scala-apidoc on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install scala-apidoc using yum by running the following command:

sudo yum -y install scala-apidoc

How To Uninstall scala-apidoc on AlmaLinux 8

To uninstall only the scala-apidoc package we can use the following command:

sudo dnf remove scala-apidoc

References

Summary

In this tutorial we learn how to install scala-apidoc on AlmaLinux 8 using yum and dnf.