How To Install supybot-meetbot on AlmaLinux 8

In this tutorial we learn how to install supybot-meetbot in AlmaLinux 8. supybot-meetbot is Plugin for Supybot for handling IRC meetings

Introduction

In this tutorial we learn how to install supybot-meetbot on AlmaLinux 8.

What is supybot-meetbot

MeatBot is designed to assist in running meetings, taking notes, and so on. It is in pure python, as a plugin to supybot. However, there is a clear distinction between meeting-code and IRC-code, so it should be relatively easy to port to other bots. It is under the supybot license (3-clause BSD).

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

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

sudo dnf -y install supybot-meetbot

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

sudo yum -y install supybot-meetbot

How To Uninstall supybot-meetbot on AlmaLinux 8

To uninstall only the supybot-meetbot package we can use the following command:

sudo dnf remove supybot-meetbot

References

Summary

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