How to Install and Uninstall python3-typer.noarch Package on Oracle Linux 9

Last updated: June 18,2024

1. Install "python3-typer.noarch" package

Please follow the guidelines below to install python3-typer.noarch on Oracle Linux 9

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

2. Uninstall "python3-typer.noarch" package

Please follow the step by step instructions below to uninstall python3-typer.noarch on Oracle Linux 9:

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

3. Information about the python3-typer.noarch package on Oracle Linux 9

Last metadata expiration check: 2:22:42 ago on Thu Feb 15 07:50:05 2024.
Available Packages
Name : python3-typer
Version : 0.9.0
Release : 4.el9
Architecture : noarch
Size : 89 k
Source : python-typer-0.9.0-4.el9.src.rpm
Repository : epel
Summary : Build great CLIs; easy to code; based on Python type hints
URL : https://typer.tiangolo.com/
License : MIT
Description : Typer is a library for building CLI applications that users will love using and
: developers will love creating. Based on Python 3.6+ type hints.
:
: The key features are:
:
: • Intuitive to write: Great editor support. Completion everywhere. Less time
: debugging. Designed to be easy to use and learn. Less time reading docs.
: • Easy to use: It’s easy to use for the final users. Automatic help, and
: automatic completion for all shells.
: • Short: Minimize code duplication. Multiple features from each parameter
: declaration. Fewer bugs.
: • Start simple: The simplest example adds only 2 lines of code to your app: 1
: import, 1 function call.
: • Grow large: Grow in complexity as much as you want, create arbitrarily
: complex trees of commands and groups of subcommands, with options and
: arguments.
:
: Typer is FastAPI’s little sibling.
:
: And it’s intended to be the FastAPI of CLIs.