How To Install python3-entrypoints on Fedora 36

In this tutorial we learn how to install python3-entrypoints in Fedora 36. python3-entrypoints is Discover and load entry points from installed packages

Introduction

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

What is python3-entrypoints

Entry points are a way for Python packages to advertise objects with some common interface. The most common examples are console_scripts entry points, which define shell commands by identifying a Python function to run. The entrypoints module contains functions to find and load entry points.

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

Install python3-entrypoints 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-entrypoints using dnf by running the following command:

sudo dnf -y install python3-entrypoints

Install python3-entrypoints 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-entrypoints using yum by running the following command:

sudo yum -y install python3-entrypoints

How To Uninstall python3-entrypoints on Fedora 36

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

sudo dnf remove python3-entrypoints

python3-entrypoints Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/__pycache__/entrypoints.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/__pycache__/entrypoints.cpython-310.pyc
/usr/lib/python3.10/site-packages/entrypoints-0.3.dist-info
/usr/lib/python3.10/site-packages/entrypoints-0.3.dist-info/INSTALLER
/usr/lib/python3.10/site-packages/entrypoints-0.3.dist-info/LICENSE
/usr/lib/python3.10/site-packages/entrypoints-0.3.dist-info/METADATA
/usr/lib/python3.10/site-packages/entrypoints-0.3.dist-info/RECORD
/usr/lib/python3.10/site-packages/entrypoints-0.3.dist-info/REQUESTED
/usr/lib/python3.10/site-packages/entrypoints-0.3.dist-info/WHEEL
/usr/lib/python3.10/site-packages/entrypoints.py
/usr/share/doc/python3-entrypoints
/usr/share/doc/python3-entrypoints/html
/usr/share/doc/python3-entrypoints/html/_sources
/usr/share/doc/python3-entrypoints/html/_sources/api.rst.txt
/usr/share/doc/python3-entrypoints/html/_sources/index.rst.txt
/usr/share/doc/python3-entrypoints/html/_static
/usr/share/doc/python3-entrypoints/html/_static/alabaster.css
/usr/share/doc/python3-entrypoints/html/_static/basic.css
/usr/share/doc/python3-entrypoints/html/_static/custom.css
/usr/share/doc/python3-entrypoints/html/_static/doctools.js
/usr/share/doc/python3-entrypoints/html/_static/documentation_options.js
/usr/share/doc/python3-entrypoints/html/_static/file.png
/usr/share/doc/python3-entrypoints/html/_static/jquery-3.5.1.js
/usr/share/doc/python3-entrypoints/html/_static/jquery.js
/usr/share/doc/python3-entrypoints/html/_static/language_data.js
/usr/share/doc/python3-entrypoints/html/_static/minus.png
/usr/share/doc/python3-entrypoints/html/_static/plus.png
/usr/share/doc/python3-entrypoints/html/_static/pygments.css
/usr/share/doc/python3-entrypoints/html/_static/searchtools.js
/usr/share/doc/python3-entrypoints/html/_static/underscore-1.13.1.js
/usr/share/doc/python3-entrypoints/html/_static/underscore.js
/usr/share/doc/python3-entrypoints/html/api.html
/usr/share/doc/python3-entrypoints/html/genindex.html
/usr/share/doc/python3-entrypoints/html/index.html
/usr/share/doc/python3-entrypoints/html/objects.inv
/usr/share/doc/python3-entrypoints/html/py-modindex.html
/usr/share/doc/python3-entrypoints/html/search.html
/usr/share/doc/python3-entrypoints/html/searchindex.js
/usr/share/licenses/python3-entrypoints
/usr/share/licenses/python3-entrypoints/LICENSE

References

Summary

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