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

Last updated: April 28,2024

1. Install "python3-natsort.noarch" package

This guide covers the steps necessary to install python3-natsort.noarch on Fedora 35

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

2. Uninstall "python3-natsort.noarch" package

This is a short guide on how to uninstall python3-natsort.noarch on Fedora 35:

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

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

Last metadata expiration check: 1:46:16 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : python3-natsort
Version : 7.1.1
Release : 4.fc35
Architecture : noarch
Size : 56 k
Source : python-natsort-7.1.1-4.fc35.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']