How To Install supybot-meetbot on CentOS 7

In this tutorial we learn how to install supybot-meetbot on CentOS 7. supybot-meetbot is Plugin for Supybot for handling IRC meetings

Introduction

In this tutorial we learn how to install supybot-meetbot on CentOS 7.

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 CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install supybot-meetbot.

Install supybot-meetbot on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install supybot-meetbot

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

sudo dnf -y install supybot-meetbot

How To Uninstall supybot-meetbot on CentOS 7

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 CentOS 7 using yum and dnf.