How To Install python3-iowait on Fedora 36

In this tutorial we learn how to install python3-iowait in Fedora 36. python3-iowait is Platform-independent module for I/O completion events

Introduction

In this tutorial we learn how to install python3-iowait on Fedora 36.

What is python3-iowait

Different operating systems provide different ways to wait for I/O completion events applications it can be a pain to support all this system functions, especially because each one provides a different interface. IOWait solves this problem by providing a unified interface and using always the best and faster function available in the platform. Its only limitation is that, on Windows, it only works for sockets. Python 3 version.

We can use yum or dnf to install python3-iowait on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install python3-iowait.

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

sudo dnf -y install python3-iowait

Install python3-iowait 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 python3-iowait using yum by running the following command:

sudo yum -y install python3-iowait

How To Uninstall python3-iowait on Fedora 36

To uninstall only the python3-iowait package we can use the following command:

sudo dnf remove python3-iowait

python3-iowait Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/__pycache__/iowait.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/__pycache__/iowait.cpython-310.pyc
/usr/lib/python3.10/site-packages/iowait-0.2-py3.10.egg-info
/usr/lib/python3.10/site-packages/iowait.py
/usr/share/licenses/python3-iowait
/usr/share/licenses/python3-iowait/COPYING.LESSER

References

Summary

In this tutorial we learn how to install python3-iowait on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).