How to Install and Uninstall python3-natsort.noarch Package on CentOS 8 / RHEL 8

Last updated: May 18,2024

1. Install "python3-natsort.noarch" package

Please follow the steps below to install python3-natsort.noarch on CentOS 8 / RHEL 8

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

2. Uninstall "python3-natsort.noarch" package

In this section, we are going to explain the necessary steps to uninstall python3-natsort.noarch on CentOS 8 / RHEL 8:

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

3. Information about the python3-natsort.noarch package on CentOS 8 / RHEL 8

Last metadata expiration check: 1 day, 7:57:58 ago on Sun May 9 13:03:46 2021.
Available Packages
Name : python3-natsort
Version : 7.1.1
Release : 2.el8
Architecture : noarch
Size : 60 k
Source : python-natsort-7.1.1-2.el8.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']