How To Install python3-stdio-mgr on Fedora 36

In this tutorial we learn how to install python3-stdio-mgr in Fedora 36. python3-stdio-mgr is Context manager for mocking/wrapping stdin/stdout/stderr

Introduction

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

What is python3-stdio-mgr

While some functionality here is more or less duplicative of redirect_stdout and redirect_stderr in contextlib within the standard library, it provides (i) a much more concise way to mock both stdout and stderr at the same time, and (ii) a mechanism for mocking stdin, which is not available in contextlib.

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

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

sudo dnf -y install python3-stdio-mgr

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

sudo yum -y install python3-stdio-mgr

How To Uninstall python3-stdio-mgr on Fedora 36

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

sudo dnf remove python3-stdio-mgr

python3-stdio-mgr Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/stdio_mgr
/usr/lib/python3.10/site-packages/stdio_mgr-1.0.1-py3.10.egg-info
/usr/lib/python3.10/site-packages/stdio_mgr-1.0.1-py3.10.egg-info/PKG-INFO
/usr/lib/python3.10/site-packages/stdio_mgr-1.0.1-py3.10.egg-info/SOURCES.txt
/usr/lib/python3.10/site-packages/stdio_mgr-1.0.1-py3.10.egg-info/dependency_links.txt
/usr/lib/python3.10/site-packages/stdio_mgr-1.0.1-py3.10.egg-info/requires.txt
/usr/lib/python3.10/site-packages/stdio_mgr-1.0.1-py3.10.egg-info/top_level.txt
/usr/lib/python3.10/site-packages/stdio_mgr/__init__.py
/usr/lib/python3.10/site-packages/stdio_mgr/__pycache__
/usr/lib/python3.10/site-packages/stdio_mgr/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/stdio_mgr/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/stdio_mgr/__pycache__/stdio_mgr.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/stdio_mgr/__pycache__/stdio_mgr.cpython-310.pyc
/usr/lib/python3.10/site-packages/stdio_mgr/stdio_mgr.py
/usr/share/doc/python3-stdio-mgr
/usr/share/doc/python3-stdio-mgr/README.rst
/usr/share/licenses/python3-stdio-mgr
/usr/share/licenses/python3-stdio-mgr/LICENSE.txt

References

Summary

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