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

Last updated: June 26,2024

1. Install "python3-script.noarch" package

This is a short guide on how to install python3-script.noarch on Fedora 35

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

2. Uninstall "python3-script.noarch" package

Please follow the guidance below to uninstall python3-script.noarch on Fedora 35:

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

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

Last metadata expiration check: 1:24:38 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : python3-script
Version : 1.7.2
Release : 25.fc35
Architecture : noarch
Size : 25 k
Source : python3-script-1.7.2-25.fc35.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!