How To Install python3-toposort on Fedora 36

In this tutorial we learn how to install python3-toposort in Fedora 36. python3-toposort is Implements a topological sort algorithm

Introduction

In this tutorial we learn how to install python3-toposort on Fedora 36.

What is python3-toposort

In computer science, a topological sort (sometimes abbreviated topsort or toposort) or topological ordering of a directed graph is a linear ordering of its vertices such that for every directed edge uv from vertex u to vertex v, u comes before v in the ordering.

We can use yum or dnf to install python3-toposort on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install python3-toposort.

Install python3-toposort on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install python3-toposort using dnf by running the following command:

sudo dnf -y install python3-toposort

Install python3-toposort on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install python3-toposort using yum by running the following command:

sudo yum -y install python3-toposort

How To Uninstall python3-toposort on Fedora 36

To uninstall only the python3-toposort package we can use the following command:

sudo dnf remove python3-toposort

python3-toposort Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/__pycache__/toposort.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/__pycache__/toposort.cpython-310.pyc
/usr/lib/python3.10/site-packages/toposort-1.7.dist-info
/usr/lib/python3.10/site-packages/toposort-1.7.dist-info/INSTALLER
/usr/lib/python3.10/site-packages/toposort-1.7.dist-info/LICENSE.txt
/usr/lib/python3.10/site-packages/toposort-1.7.dist-info/METADATA
/usr/lib/python3.10/site-packages/toposort-1.7.dist-info/NOTICE
/usr/lib/python3.10/site-packages/toposort-1.7.dist-info/WHEEL
/usr/lib/python3.10/site-packages/toposort-1.7.dist-info/top_level.txt
/usr/lib/python3.10/site-packages/toposort.py
/usr/share/doc/python3-toposort
/usr/share/doc/python3-toposort/CHANGES.txt
/usr/share/doc/python3-toposort/README.txt

References

Summary

In this tutorial we learn how to install python3-toposort on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).