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

Last updated: June 29,2024

1. Install "python3-typer.noarch" package

This tutorial shows how to install python3-typer.noarch on Fedora 34

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

2. Uninstall "python3-typer.noarch" package

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

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

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

Last metadata expiration check: 1:30:13 ago on Tue Sep 6 14:10:38 2022.
Available Packages
Name : python3-typer
Version : 0.3.2
Release : 10.fc34
Architecture : noarch
Size : 48 k
Source : python-typer-0.3.2-10.fc34.src.rpm
Repository : updates
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.