How To Install python3-typedecorator on AlmaLinux 8

In this tutorial we learn how to install python3-typedecorator in AlmaLinux 8. python3-typedecorator is Decorator-based type checking library

Introduction

In this tutorial we learn how to install python3-typedecorator on AlmaLinux 8.

What is python3-typedecorator

A decorator-based implementation of type checks for Python. Provides @params, @returns and @void decorators for describing the type of the function arguments and return values. If the types mismatch, an exception can be thrown, the mismatch can be logged, or it can be ignored.

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

Install python3-typedecorator 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 python3-typedecorator using dnf by running the following command:

sudo dnf -y install python3-typedecorator

Install python3-typedecorator 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 python3-typedecorator using yum by running the following command:

sudo yum -y install python3-typedecorator

How To Uninstall python3-typedecorator on AlmaLinux 8

To uninstall only the python3-typedecorator package we can use the following command:

sudo dnf remove python3-typedecorator

References

Summary

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