How To Install python3-recommonmark on AlmaLinux 8

In this tutorial we learn how to install python3-recommonmark in AlmaLinux 8. python3-recommonmark is docutils-compatibility bridge to CommonMark

Introduction

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

What is python3-recommonmark

A docutils-compatibility bridge to CommonMark. This allows you to write CommonMark inside of Docutils & Sphinx projects. Documentation is available on Read the Docs

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

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

sudo dnf -y install python3-recommonmark

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

sudo yum -y install python3-recommonmark

How To Uninstall python3-recommonmark on AlmaLinux 8

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

sudo dnf remove python3-recommonmark

References

Summary

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