How To Install python3-aeidon on CentOS 8

In this tutorial we learn how to install python3-aeidon on CentOS 8. python3-aeidon is Read, write, and manipulate text-based subtitle files

Introduction

In this tutorial we learn how to install python3-aeidon on CentOS 8.

What is python3-aeidon

aeidon is a Python package that provides classes and functions for dealing with text-based subtitle files of many different formats. Functions exist for reading and writing subtitle files as well as manipulating subtitle data, i.e. positions (times or frames) and texts. The aeidon package is part of the Gaupol subtitle editor, where the other package, gaupol, provides the GTK user interface. Separating a user interface independent general-purpose subtitle editing package from Gaupol has been an afterthought and thus not well designed to be a reusable component, but on the other hand is proven, working and maintained code. API documentation

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

Install python3-aeidon on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install python3-aeidon

Install python3-aeidon on CentOS 8 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

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

sudo dnf -y install python3-aeidon

How To Uninstall python3-aeidon on CentOS 8

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

sudo dnf remove python3-aeidon

References

Summary

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