How to Install and Uninstall python3-dtopt.noarch Package on Red Hat Enterprise Linux 8 (RHEL 8)

Last updated: October 15,2024

1. Install "python3-dtopt.noarch" package

This tutorial shows how to install python3-dtopt.noarch on Red Hat Enterprise Linux 8 (RHEL 8)

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

2. Uninstall "python3-dtopt.noarch" package

Please follow the step by step instructions below to uninstall python3-dtopt.noarch on Red Hat Enterprise Linux 8 (RHEL 8):

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

3. Information about the python3-dtopt.noarch package on Red Hat Enterprise Linux 8 (RHEL 8)

Last metadata expiration check: 1:48:42 ago on Mon Feb 26 15:59:38 2024.
Available Packages
Name : python3-dtopt
Version : 0.1
Release : 44.el8
Architecture : noarch
Size : 19 k
Source : python-dtopt-0.1-44.el8.src.rpm
Repository : epel
Summary : Add options to doctest examples while they are running
URL : http://pypi.python.org/pypi/dtopt/
License : MIT
Description : dtopts adds options to doctest examples while they are running. When
: using the doctest module it is often convenient to use the ELLIPSIS
: option, which allows you to use ... as a wildcard. But you either have
: to setup the test runner to use this option, or you must put #doctest:
: +ELLIPSIS on every example that uses this feature. dtopt lets you enable
: this option globally from within a doctest, by doing:
: >>> from dtopt import ELLIPSIS