How To Install python3-intelhex on Fedora 36

In this tutorial we learn how to install python3-intelhex in Fedora 36. python3-intelhex is A python3 library for manipulating Intel HEX file format

Introduction

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

What is python3-intelhex

The Intel HEX file format is widely used in microprocessors and microcontrollers area (embedded systems etc) as the de facto standard for representation of code to be programmed into microelectronic devices. This work implements an intelhex Python library and a number of utilities to read, write, create from scratch and manipulate data from Intel HEX file format. The distribution package also includes several convenience Python scripts, including “classic” hex2bin and bin2hex converters and more, those based on the library itself. Check the docs to know more.

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

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

sudo dnf -y install python3-intelhex

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

sudo yum -y install python3-intelhex

How To Uninstall python3-intelhex on Fedora 36

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

sudo dnf remove python3-intelhex

python3-intelhex Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/intelhex
/usr/lib/python3.10/site-packages/intelhex-2.3.0-py3.10.egg-info
/usr/lib/python3.10/site-packages/intelhex-2.3.0-py3.10.egg-info/PKG-INFO
/usr/lib/python3.10/site-packages/intelhex-2.3.0-py3.10.egg-info/SOURCES.txt
/usr/lib/python3.10/site-packages/intelhex-2.3.0-py3.10.egg-info/dependency_links.txt
/usr/lib/python3.10/site-packages/intelhex-2.3.0-py3.10.egg-info/top_level.txt
/usr/lib/python3.10/site-packages/intelhex/__init__.py
/usr/lib/python3.10/site-packages/intelhex/__main__.py
/usr/lib/python3.10/site-packages/intelhex/__pycache__
/usr/lib/python3.10/site-packages/intelhex/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/intelhex/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/intelhex/__pycache__/__main__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/intelhex/__pycache__/__main__.cpython-310.pyc
/usr/lib/python3.10/site-packages/intelhex/__pycache__/__version__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/intelhex/__pycache__/__version__.cpython-310.pyc
/usr/lib/python3.10/site-packages/intelhex/__pycache__/bench.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/intelhex/__pycache__/bench.cpython-310.pyc
/usr/lib/python3.10/site-packages/intelhex/__pycache__/compat.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/intelhex/__pycache__/compat.cpython-310.pyc
/usr/lib/python3.10/site-packages/intelhex/__pycache__/getsizeof.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/intelhex/__pycache__/getsizeof.cpython-310.pyc
/usr/lib/python3.10/site-packages/intelhex/__pycache__/test.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/intelhex/__pycache__/test.cpython-310.pyc
/usr/lib/python3.10/site-packages/intelhex/__version__.py
/usr/lib/python3.10/site-packages/intelhex/bench.py
/usr/lib/python3.10/site-packages/intelhex/compat.py
/usr/lib/python3.10/site-packages/intelhex/getsizeof.py
/usr/lib/python3.10/site-packages/intelhex/test.py
/usr/share/licenses/python3-intelhex
/usr/share/licenses/python3-intelhex/LICENSE.txt

References

Summary

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