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

Last updated: October 03,2024

1. Install "python3-iowait.noarch" package

Please follow the guidelines below to install python3-iowait.noarch on Fedora 39

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

2. Uninstall "python3-iowait.noarch" package

Please follow the steps below to uninstall python3-iowait.noarch on Fedora 39:

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

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

Last metadata expiration check: 0:40:36 ago on Thu Mar 7 17:44:52 2024.
Available Packages
Name : python3-iowait
Version : 0.2
Release : 25.fc39
Architecture : noarch
Size : 23 k
Source : python-iowait-0.2-25.fc39.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.