How to Install and Uninstall python3-easyargs.noarch Package on Fedora 34

Last updated: October 04,2024

1. Install "python3-easyargs.noarch" package

In this section, we are going to explain the necessary steps to install python3-easyargs.noarch on Fedora 34

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

2. Uninstall "python3-easyargs.noarch" package

Please follow the instructions below to uninstall python3-easyargs.noarch on Fedora 34:

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

3. Information about the python3-easyargs.noarch package on Fedora 34

Last metadata expiration check: 4:57:09 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : python3-easyargs
Version : 0.9.4
Release : 14.fc34
Architecture : noarch
Size : 21 k
Source : python-easyargs-0.9.4-14.fc34.src.rpm
Repository : fedora
Summary : Making argument parsing easy
URL : https://github.com/stedmeister/easyargs
License : MIT
Description : A project designed to make command line argument parsing easy. There are many
: ways to create a command line parser in python: argparse, docopt, click. These
: are all great options, but require quite a lot of configuration and sometimes
: you just need a function to be called. Enter easyargs. Define the function
: that you want to be called, decorate it and let easyargs work out the command
: line.