How To Install python3-script on Fedora 36

In this tutorial we learn how to install python3-script in Fedora 36. python3-script is Help for writing shell scripts in Python

Introduction

In this tutorial we learn how to install python3-script on Fedora 36.

What is python3-script

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!

We can use yum or dnf to install python3-script on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install python3-script.

Install python3-script on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install python3-script using dnf by running the following command:

sudo dnf -y install python3-script

Install python3-script on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install python3-script using yum by running the following command:

sudo yum -y install python3-script

How To Uninstall python3-script on Fedora 36

To uninstall only the python3-script package we can use the following command:

sudo dnf remove python3-script

python3-script Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/__pycache__/script.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/__pycache__/script.cpython-310.pyc
/usr/lib/python3.10/site-packages/script-1.7.2-py3.10.egg-info
/usr/lib/python3.10/site-packages/script.py
/usr/share/doc/python3-script
/usr/share/doc/python3-script/README.txt
/usr/share/licenses/python3-script
/usr/share/licenses/python3-script/LICENSE

References

Summary

In this tutorial we learn how to install python3-script on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).