How To Install python-sphinxcontrib-issuetracker on CentOS 7

In this tutorial we learn how to install python-sphinxcontrib-issuetracker on CentOS 7. python-sphinxcontrib-issuetracker is Sphinx integration with different issue trackers

Introduction

In this tutorial we learn how to install python-sphinxcontrib-issuetracker on CentOS 7.

What is python-sphinxcontrib-issuetracker

A Sphinx extension to reference issues in issue trackers, either explicitly with an “issue” role or optionally implicitly by issue ids like #10 in plain text. Currently the following issue trackers are supported * GitHub * BitBucket * Launchpad * Google Code * Debian BTS * Jira A simple API is provided to add support for other issue trackers. If you added support for a new tracker, please consider sending a patch to make your work available to other users of this extension.

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

Install python-sphinxcontrib-issuetracker 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-sphinxcontrib-issuetracker using yum by running the following command:

sudo yum -y install python-sphinxcontrib-issuetracker

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

sudo dnf -y install python-sphinxcontrib-issuetracker

How To Uninstall python-sphinxcontrib-issuetracker on CentOS 7

To uninstall only the python-sphinxcontrib-issuetracker package we can use the following command:

sudo dnf remove python-sphinxcontrib-issuetracker

References

Summary

In this tutorial we learn how to install python-sphinxcontrib-issuetracker on CentOS 7 using yum and dnf.