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

Last updated: October 05,2024

1. Install "python3-script.noarch" package

This guide covers the steps necessary to install python3-script.noarch on Fedora 34

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

2. Uninstall "python3-script.noarch" package

This is a short guide on how to uninstall python3-script.noarch on Fedora 34:

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

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

Last metadata expiration check: 4:07:01 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : python3-script
Version : 1.7.2
Release : 23.fc34
Architecture : noarch
Size : 25 k
Source : python3-script-1.7.2-23.fc34.src.rpm
Repository : fedora
Summary : Help for writing shell scripts in Python
URL : http://lamb.cc/script/
License : Python
Description : This module is mostly for folks who need to write a python script that will be
: run from the command line. You know, something that can parse command line
: arguments and run other external programs via the shell. The kind of script
: you can call with --help. Something that perhaps reads, copies, deletes, or
: otherwise manipulates files by their pathname.
:
: If any of these apply, perhaps this module is for you!
:
: A simple import script statement can provide your code with convenient command
: line parsing, "a la carte" --help documentation, useful path operations, shell
: command invocation with optional pipe redirection, and early run-time
: termination with exit status control. Read on for more. Cheers!