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

Last updated: January 16,2025

1. Install "python3-iowait.noarch" package

In this section, we are going to explain the necessary steps to install python3-iowait.noarch on Fedora 38

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

2. Uninstall "python3-iowait.noarch" package

This guide covers the steps necessary to uninstall python3-iowait.noarch on Fedora 38:

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

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

Last metadata expiration check: 3:17:03 ago on Sat Mar 16 22:59:57 2024.
Available Packages
Name : python3-iowait
Version : 0.2
Release : 22.fc38
Architecture : noarch
Size : 23 k
Source : python-iowait-0.2-22.fc38.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.