How To Install python3-hdf5storage on Fedora 36

In this tutorial we learn how to install python3-hdf5storage in Fedora 36. python3-hdf5storage is Read/write Python types to/from HDF5 files, including MATLAB v7.3 MAT files

Introduction

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

What is python3-hdf5storage

This Python package provides high level utilities to read/write a variety of Python types to/from HDF5 (Heirarchal Data Format) formatted files. This package also provides support for MATLAB MAT v7.3 formatted files, which are just HDF5 files with a different extension and some extra meta-data. All of this is done without pickling data. Pickling is bad for security because it allows arbitrary code to be executed in the interpreter. One wants to be able to read possibly HDF5 and MAT files from untrusted sources, so pickling is avoided in this package. The package’s documetation is found at http The package’s source code is found at https

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

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

sudo dnf -y install python3-hdf5storage

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

sudo yum -y install python3-hdf5storage

How To Uninstall python3-hdf5storage on Fedora 36

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

sudo dnf remove python3-hdf5storage

python3-hdf5storage Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/hdf5storage
/usr/lib/python3.10/site-packages/hdf5storage-0.1.18.dist-info
/usr/lib/python3.10/site-packages/hdf5storage-0.1.18.dist-info/COPYING.txt
/usr/lib/python3.10/site-packages/hdf5storage-0.1.18.dist-info/INSTALLER
/usr/lib/python3.10/site-packages/hdf5storage-0.1.18.dist-info/METADATA
/usr/lib/python3.10/site-packages/hdf5storage-0.1.18.dist-info/WHEEL
/usr/lib/python3.10/site-packages/hdf5storage-0.1.18.dist-info/top_level.txt
/usr/lib/python3.10/site-packages/hdf5storage/Marshallers.py
/usr/lib/python3.10/site-packages/hdf5storage/__init__.py
/usr/lib/python3.10/site-packages/hdf5storage/__pycache__
/usr/lib/python3.10/site-packages/hdf5storage/__pycache__/Marshallers.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/hdf5storage/__pycache__/Marshallers.cpython-310.pyc
/usr/lib/python3.10/site-packages/hdf5storage/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/hdf5storage/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/hdf5storage/__pycache__/lowlevel.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/hdf5storage/__pycache__/lowlevel.cpython-310.pyc
/usr/lib/python3.10/site-packages/hdf5storage/__pycache__/utilities.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/hdf5storage/__pycache__/utilities.cpython-310.pyc
/usr/lib/python3.10/site-packages/hdf5storage/lowlevel.py
/usr/lib/python3.10/site-packages/hdf5storage/utilities.py
/usr/share/doc/python3-hdf5storage
/usr/share/doc/python3-hdf5storage/README.rst

References

Summary

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