How To Install limnoria on CentOS 7

In this tutorial we learn how to install limnoria on CentOS 7. limnoria is A modified version of Supybot (an IRC bot) with enhancements and

Introduction

In this tutorial we learn how to install limnoria on CentOS 7.

What is limnoria

Supybot is a robust (it doesn’t crash), user friendly (it’s easy to configure) and programmer friendly (plugins are extremely easy to write) Python IRC bot. It aims to be an adequate replacement for most existing IRC bots. It includes a very flexible and powerful ACL system for controlling access to commands, as well as more than 50 builtin plugins providing around 400 actual commands. Limnoria is a project which continues development of Supybot (you can call it a fork) by fixing bugs and adding features (see the list of added features for more details).

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

Install limnoria on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install limnoria using yum by running the following command:

sudo yum -y install limnoria

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

sudo dnf -y install limnoria

How To Uninstall limnoria on CentOS 7

To uninstall only the limnoria package we can use the following command:

sudo dnf remove limnoria

References

Summary

In this tutorial we learn how to install limnoria on CentOS 7 using yum and dnf.