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

Last updated: May 07,2024

1. Install "python3-natsort.noarch" package

In this section, we are going to explain the necessary steps to install python3-natsort.noarch on Fedora 34

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

2. Uninstall "python3-natsort.noarch" package

This tutorial shows how to uninstall python3-natsort.noarch on Fedora 34:

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

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

Last metadata expiration check: 5:37:50 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : python3-natsort
Version : 7.1.1
Release : 2.fc34
Architecture : noarch
Size : 59 k
Source : python-natsort-7.1.1-2.fc34.src.rpm
Repository : fedora
Summary : Python library that sorts lists using the "natural order" sort
URL : https://github.com/SethMMorton/natsort
License : MIT
Description : Python module which provides "natural sorting".
:
: Under natural sorting, numeric sub-strings are compared numerically,
: and the other word characters are compared lexically.
:
: Example:
: unsorted: ['a2', 'a9', 'a1', 'a4', 'a10']
: lexicographic sort: ['a1', 'a10', 'a2', 'a4', 'a9']
: natural sort: ['a1', 'a2', 'a4', 'a9', 'a10']