How To Install python3-toolz on AlmaLinux 8

In this tutorial we learn how to install python3-toolz in AlmaLinux 8. python3-toolz is A functional standard library for Python 3.6

Introduction

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

What is python3-toolz

Toolz provides a set of utility functions for iterators, functions, and dictionaries. These functions interoperate well and form the building blocks of common data analytic operations. They extend the standard libraries itertools and functools and borrow heavily from the standard libraries of contemporary functional languages. Toolz provides a suite of functions which have the following functional virtues Composable Pure Lazy large streaming data sets. Toolz functions are pragmatic. They understand that most programmers have deadlines. Low Tech Tuned Serializable This gives developers the power to write powerful programs to solve complex problems with relatively simple code. This code can be easy to understand without sacrificing performance. Toolz enables this approach, commonly associated with functional programming, within a natural Pythonic style suitable for most developers.

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

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

sudo dnf -y install python3-toolz

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

sudo yum -y install python3-toolz

How To Uninstall python3-toolz on AlmaLinux 8

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

sudo dnf remove python3-toolz

References

Summary

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