How to Install and Uninstall python3-natsort.noarch Package on Rocky Linux 9

Last updated: September 22,2024

1. Install "python3-natsort.noarch" package

Learn how to install python3-natsort.noarch on Rocky Linux 9

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

2. Uninstall "python3-natsort.noarch" package

Learn how to uninstall python3-natsort.noarch on Rocky Linux 9:

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

3. Information about the python3-natsort.noarch package on Rocky Linux 9

Last metadata expiration check: 1:36:15 ago on Fri Feb 16 06:49:52 2024.
Available Packages
Name : python3-natsort
Version : 7.1.1
Release : 5.el9
Architecture : noarch
Size : 58 k
Source : python-natsort-7.1.1-5.el9.src.rpm
Repository : epel
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']