How To Install pyside-tools on CentOS 7

In this tutorial we learn how to install pyside-tools on CentOS 7. pyside-tools is Development tools for PySide

Introduction

In this tutorial we learn how to install pyside-tools on CentOS 7.

What is pyside-tools

PySide provides Python bindings for the Qt cross-platform application and UI framework. This package ships the following accompanying tools * pyside-rcc - PySide resource compiler * pyside-uic - Python User Interface Compiler for PySide * pyside-lupdate - update Qt Linguist translation files for PySide

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

Install pyside-tools on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install pyside-tools

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

sudo dnf -y install pyside-tools

How To Uninstall pyside-tools on CentOS 7

To uninstall only the pyside-tools package we can use the following command:

sudo dnf remove pyside-tools

References

Summary

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