How to Install and Uninstall python3-result.noarch Package on Fedora 39

Last updated: October 11,2024

1. Install "python3-result.noarch" package

Please follow the step by step instructions below to install python3-result.noarch on Fedora 39

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

2. Uninstall "python3-result.noarch" package

In this section, we are going to explain the necessary steps to uninstall python3-result.noarch on Fedora 39:

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

3. Information about the python3-result.noarch package on Fedora 39

Last metadata expiration check: 0:47:26 ago on Thu Mar 7 11:44:58 2024.
Available Packages
Name : python3-result
Version : 0.10.0
Release : 3.fc39
Architecture : noarch
Size : 21 k
Source : python-result-0.10.0-3.fc39.src.rpm
Repository : fedora
Summary : A Rust-like result type for Python
URL : https://github.com/rustedpy/result
License : MIT
Description : A simple Result type for Python 3 inspired by Rust, fully type annotated.
:
: The idea is that a result value can be either `Ok(value)` or `Err(error)`, with
: a way to differentiate between the two. `Ok` and `Err` are both classes
: encapsulating an arbitrary value. `Result[T, E]` is a generic type alias for
: `typing.Union[Ok[T], Err[E]]`.