How to Install and Uninstall python-dtopt.noarch Package on Amazon Linux 2

Last updated: May 08,2024

1. Install "python-dtopt.noarch" package

This guide let you learn how to install python-dtopt.noarch on Amazon Linux 2

$ sudo yum makecache $ sudo yum install python-dtopt.noarch

2. Uninstall "python-dtopt.noarch" package

This guide let you learn how to uninstall python-dtopt.noarch on Amazon Linux 2:

$ sudo yum remove python-dtopt.noarch $ sudo yum autoremove

3. Information about the python-dtopt.noarch package on Amazon Linux 2

Loaded plugins: ovl, priorities
Available Packages
Name : python-dtopt
Arch : noarch
Version : 0.1
Release : 13.amzn2
Size : 12 k
Repo : amzn2-core/2/x86_64
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