How To Install pychecker on CentOS 7

In this tutorial we learn how to install pychecker on CentOS 7. pychecker is A python source code checking tool

Introduction

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

What is pychecker

PyChecker is a python source code checking tool to help you find common bugs. It is meant to find problems that are typically caught by a compiler.

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

Install pychecker on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install pychecker

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

sudo dnf -y install pychecker

How To Uninstall pychecker on CentOS 7

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

sudo dnf remove pychecker

References

Summary

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