How To Install pychart-doc on CentOS 7

In this tutorial we learn how to install pychart-doc on CentOS 7. pychart-doc is Documentation for using pychart in python programs

Introduction

In this tutorial we learn how to install pychart-doc on CentOS 7.

What is pychart-doc

PyChart is a Python library for creating high quality Encapsulated Postscript, PDF, PNG, or SVG charts. It currently supports line plots, bar plots, range-fill plots, and pie charts. Because it is based on Python, you can make full use of Python’s scripting power. Install this package if you want the developers’ documentation and examples that tell you how to program with the pychart library.

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

Install pychart-doc on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install pychart-doc

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

sudo dnf -y install pychart-doc

How To Uninstall pychart-doc on CentOS 7

To uninstall only the pychart-doc package we can use the following command:

sudo dnf remove pychart-doc

References

Summary

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