How To Install python36-pkgconfig on CentOS 7

In this tutorial we learn how to install python36-pkgconfig on CentOS 7. python36-pkgconfig is A Python3 interface to the pkg-config command line tool

Introduction

In this tutorial we learn how to install python36-pkgconfig on CentOS 7.

What is python36-pkgconfig

pkgconfig is a Python module to interface with the pkg-config command line tool and supports Python 2.6+. It can be used to * check if a package exists * check if a package meets certain version requirements * query CFLAGS and LDFLAGS * parse the output to build extensions with setup.py If pkg-config is not on the path, raises EnvironmentError. Python 3 version.

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

Install python36-pkgconfig on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install python36-pkgconfig

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

sudo dnf -y install python36-pkgconfig

How To Uninstall python36-pkgconfig on CentOS 7

To uninstall only the python36-pkgconfig package we can use the following command:

sudo dnf remove python36-pkgconfig

References

Summary

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