How To Install python3-bind on Rocky Linux 8

In this tutorial we learn how to install python3-bind on Rocky Linux 8. python3-bind is A module allowing rndc commands to be sent from Python programs

Introduction

In this tutorial we learn how to install python3-bind on Rocky Linux 8.

What is python3-bind

This package provides a module which allows commands to be sent to rndc directly from Python programs.

We can use yum or dnf to install python3-bind on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python3-bind.

Install python3-bind on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install python3-bind

Install python3-bind on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install python3-bind

How To Uninstall python3-bind on Rocky Linux 8

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

sudo dnf remove python3-bind

python3-bind Package Contents on Rocky Linux 8

/usr/lib/python3.6/site-packages/isc
/usr/lib/python3.6/site-packages/isc-2.0-py3.6.egg-info
/usr/lib/python3.6/site-packages/isc/__init__.py
/usr/lib/python3.6/site-packages/isc/__pycache__
/usr/lib/python3.6/site-packages/isc/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/checkds.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/checkds.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/coverage.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/coverage.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/dnskey.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/dnskey.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/eventlist.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/eventlist.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/keydict.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/keydict.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/keyevent.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/keyevent.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/keymgr.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/keymgr.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/keyseries.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/keyseries.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/keyzone.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/keyzone.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/parsetab.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/parsetab.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/policy.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/policy.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/rndc.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/rndc.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/isc/__pycache__/utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/isc/checkds.py
/usr/lib/python3.6/site-packages/isc/coverage.py
/usr/lib/python3.6/site-packages/isc/dnskey.py
/usr/lib/python3.6/site-packages/isc/eventlist.py
/usr/lib/python3.6/site-packages/isc/keydict.py
/usr/lib/python3.6/site-packages/isc/keyevent.py
/usr/lib/python3.6/site-packages/isc/keymgr.py
/usr/lib/python3.6/site-packages/isc/keyseries.py
/usr/lib/python3.6/site-packages/isc/keyzone.py
/usr/lib/python3.6/site-packages/isc/parsetab.py
/usr/lib/python3.6/site-packages/isc/policy.py
/usr/lib/python3.6/site-packages/isc/rndc.py
/usr/lib/python3.6/site-packages/isc/utils.py

References

Summary

In this tutorial we learn how to install python3-bind on Rocky Linux 8 using yum and dnf.