How To Install python-twisted-words on CentOS 7
Introduction
In this tutorial we learn how to install python-twisted-words on CentOS 7.
What is python-twisted-words
Twisted is an event-based framework for internet applications. Twisted Words contains implementations of many Instant Messaging protocols, including IRC, Jabber, MSN, OSCAR (AIM & ICQ), TOC (AOL), and some functionality for creating bots, inter-protocol gateways, and a client application for many of the protocols. In support of Jabber, Twisted Words also contains X-ish, a library for processing XML with Twisted and Python, with support for a Pythonic DOM and an XPath-like toolkit.
We can use yum or dnf to install python-twisted-words on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install python-twisted-words.
Install python-twisted-words on CentOS 7 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install python-twisted-words using yum by running the following command:
sudo yum -y install python-twisted-words
Install python-twisted-words 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 python-twisted-words using dnf by running the following command:
sudo dnf -y install python-twisted-words
How To Uninstall python-twisted-words on CentOS 7
To uninstall only the python-twisted-words package we can use the following command:
sudo dnf remove python-twisted-words
References
Summary
In this tutorial we learn how to install python-twisted-words on CentOS 7 using yum and dnf.