How to Install and Uninstall python2-configargparse.noarch Package on CentOS 7 / RHEL 7

Last updated: May 04,2024

1. Install "python2-configargparse.noarch" package

This guide covers the steps necessary to install python2-configargparse.noarch on CentOS 7 / RHEL 7

$ sudo yum makecache $ sudo yum install python2-configargparse.noarch

2. Uninstall "python2-configargparse.noarch" package

Please follow the instructions below to uninstall python2-configargparse.noarch on CentOS 7 / RHEL 7:

$ sudo yum remove python2-configargparse.noarch $ sudo yum autoremove

3. Information about the python2-configargparse.noarch package on CentOS 7 / RHEL 7

Installed Packages
Name : python2-configargparse
Arch : noarch
Version : 0.11.0
Release : 2.el7
Size : 106 k
Repo : installed
From repo : epel
Summary : A Python module with support for argparse, config files, and env
: variables
URL : https://github.com/bw2/ConfigArgParse
License : MIT
Description : Applications with more than a handful of user-settable options are
: best configured through a combination of command line args, config
: files, hard coded defaults, and in some cases, environment
: variables.
:
: Python’s command line parsing modules such as argparse have very
: limited support for config files and environment variables, so
: this module extends argparse to add these features.