How To Install pyside2-tools on Fedora 36
Introduction
In this tutorial we learn how to install pyside2-tools
on Fedora 36.
What is pyside2-tools
PySide2 provides Python bindings for the Qt5 cross-platform application and UI framework. This package ships the following accompanying tools * pyside2-rcc - PySide2 resource compiler * pyside2-uic - Python User Interface Compiler for PySide2 * pyside2-lupdate - update Qt Linguist translation files for PySide2 The name Shiboken2 and PySide2 make reference to the Qt 5 compatibility, since the previous versions (without the 2) refer to Qt 4.
We can use yum
or dnf
to install pyside2-tools
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install pyside2-tools.
Install pyside2-tools on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install pyside2-tools
using dnf
by running the following command:
sudo dnf -y install pyside2-tools
Install pyside2-tools on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install pyside2-tools
using yum
by running the following command:
sudo yum -y install pyside2-tools
How To Uninstall pyside2-tools on Fedora 36
To uninstall only the pyside2-tools
package we can use the following command:
sudo dnf remove pyside2-tools
pyside2-tools Package Contents on Fedora 36
/usr/bin/pyside2-lupdate
/usr/bin/pyside_tool.py
/usr/lib/.build-id
/usr/lib/.build-id/88
/usr/lib/.build-id/88/97124d0dec7e4df0b3ee05b9f30b6ed834f4ec
/usr/share/doc/pyside2-tools
/usr/share/doc/pyside2-tools/README.pyside2.md
/usr/share/licenses/pyside2-tools
/usr/share/licenses/pyside2-tools/LICENSE.GPL2
/usr/share/man/man1/pyside2-lupdate.1.gz
References
Summary
In this tutorial we learn how to install pyside2-tools
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).