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

Last updated: January 11,2025

1. Install "python3-easyargs.noarch" package

This is a short guide on how to install python3-easyargs.noarch on Fedora 38

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

2. Uninstall "python3-easyargs.noarch" package

This tutorial shows how to uninstall python3-easyargs.noarch on Fedora 38:

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

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

Last metadata expiration check: 2:07:33 ago on Sun Mar 17 04:59:58 2024.
Available Packages
Name : python3-easyargs
Version : 0.9.4
Release : 21.fc38
Architecture : noarch
Size : 23 k
Source : python-easyargs-0.9.4-21.fc38.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.