How to Install and Uninstall python3-iowait.noarch Package on Fedora 36

Last updated: January 11,2025

1. Install "python3-iowait.noarch" package

Here is a brief guide to show you how to install python3-iowait.noarch on Fedora 36

$ sudo dnf update $ sudo dnf install python3-iowait.noarch

2. Uninstall "python3-iowait.noarch" package

Please follow the guidelines below to uninstall python3-iowait.noarch on Fedora 36:

$ sudo dnf remove python3-iowait.noarch $ sudo dnf autoremove

3. Information about the python3-iowait.noarch package on Fedora 36

Last metadata expiration check: 3:08:55 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : python3-iowait
Version : 0.2
Release : 19.fc36
Architecture : noarch
Size : 20 k
Source : python-iowait-0.2-19.fc36.src.rpm
Repository : fedora
Summary : Platform-independent module for I/O completion events
URL : https://pypi.python.org/pypi/iowait
License : LGPLv3+
Description : Different operating systems provide different ways to wait for I/O completion
: events: there’s select(), poll(), epoll() and kqueue(). For cross-platform
: 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.