How To Install python3-typer-cli on Fedora 36

In this tutorial we learn how to install python3-typer-cli in Fedora 36. python3-typer-cli is Run Typer scripts with completion, without creating a package

Introduction

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

What is python3-typer-cli

Run Typer scripts with completion, without having to create a package, using Typer CLI. There is an optional utility tool called Typer CLI, additional to Typer itself. Its main feature is to provide ✨ completion ✨ in the Terminal for your own small programs built with Typer. …without you having to create a complete installable Python package. It’s probably most useful if you have a small custom Python script using Typer (maybe as part of some project), for some small tasks, and it’s not complex/important enough to create a whole installable Python package for it (something to be installed with pip). In that case, you can install Typer CLI, and run your program with the typer command in your Terminal, and it will provide completion for your script. You can also use Typer CLI to generate Markdown documentation for your own Typer programs 📝. Documentation Source Code for Typer CLI

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

Install python3-typer-cli 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-typer-cli using dnf by running the following command:

sudo dnf -y install python3-typer-cli

Install python3-typer-cli 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-typer-cli using yum by running the following command:

sudo yum -y install python3-typer-cli

How To Uninstall python3-typer-cli on Fedora 36

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

sudo dnf remove python3-typer-cli

python3-typer-cli Package Contents on Fedora 36

/usr/bin/typer
/usr/lib/python3.10/site-packages/typer_cli
/usr/lib/python3.10/site-packages/typer_cli-0.0.12.dist-info
/usr/lib/python3.10/site-packages/typer_cli-0.0.12.dist-info/INSTALLER
/usr/lib/python3.10/site-packages/typer_cli-0.0.12.dist-info/LICENSE
/usr/lib/python3.10/site-packages/typer_cli-0.0.12.dist-info/METADATA
/usr/lib/python3.10/site-packages/typer_cli-0.0.12.dist-info/WHEEL
/usr/lib/python3.10/site-packages/typer_cli-0.0.12.dist-info/entry_points.txt
/usr/lib/python3.10/site-packages/typer_cli/__init__.py
/usr/lib/python3.10/site-packages/typer_cli/__main__.py
/usr/lib/python3.10/site-packages/typer_cli/__pycache__
/usr/lib/python3.10/site-packages/typer_cli/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/typer_cli/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/typer_cli/__pycache__/__main__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/typer_cli/__pycache__/__main__.cpython-310.pyc
/usr/lib/python3.10/site-packages/typer_cli/__pycache__/main.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/typer_cli/__pycache__/main.cpython-310.pyc
/usr/lib/python3.10/site-packages/typer_cli/main.py
/usr/share/doc/python3-typer-cli
/usr/share/doc/python3-typer-cli/README.md
/usr/share/doc/python3-typer-cli/release-notes.md
/usr/share/licenses/python3-typer-cli
/usr/share/licenses/python3-typer-cli/LICENSE
/usr/share/man/man1/typer.1.gz

References

Summary

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