How To Install python3-binstruct on Fedora 36

In this tutorial we learn how to install python3-binstruct in Fedora 36. python3-binstruct is Library for read/write access of binary data via structures

Introduction

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

What is python3-binstruct

The binstruct library allows you to access binary data using a predefined structure. The binary data can be provided in any form that allows an indexed access to single bytes. This could for example be a memory-mapped file. The data structure itself is defined in way similar to Django database table definitions by declaring a new class with its fields.

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

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

sudo dnf -y install python3-binstruct

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

sudo yum -y install python3-binstruct

How To Uninstall python3-binstruct on Fedora 36

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

sudo dnf remove python3-binstruct

python3-binstruct Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/__pycache__/binstruct.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/__pycache__/binstruct.cpython-310.pyc
/usr/lib/python3.10/site-packages/binstruct-1.0.1-py3.10.egg-info
/usr/lib/python3.10/site-packages/binstruct-1.0.1-py3.10.egg-info/PKG-INFO
/usr/lib/python3.10/site-packages/binstruct-1.0.1-py3.10.egg-info/SOURCES.txt
/usr/lib/python3.10/site-packages/binstruct-1.0.1-py3.10.egg-info/dependency_links.txt
/usr/lib/python3.10/site-packages/binstruct-1.0.1-py3.10.egg-info/top_level.txt
/usr/lib/python3.10/site-packages/binstruct.py
/usr/share/doc/python3-binstruct
/usr/share/doc/python3-binstruct/PKG-INFO
/usr/share/doc/python3-binstruct/README.rst
/usr/share/licenses/python3-binstruct
/usr/share/licenses/python3-binstruct/LICENSE.txt

References

Summary

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