How To Install python3-pybv on Fedora 36

In this tutorial we learn how to install python3-pybv in Fedora 36. python3-pybv is A lightweight I/O utility for the BrainVision data format

Introduction

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

What is python3-pybv

pybv is a lightweight exporter to the BrainVision data format. The BrainVision data format is a recommended data format for use in the Brain Imaging Data Structure. BrainVision is the name of a file format commonly used for storing electrophysiology data. Originally, it was put forward by the company Brain Products, however the simplicity of the format has allowed for a diversity of tools reading from and writing to the format. The format consists of three separate files * A text header file (.vhdr) containing meta data * A text marker file (.vmrk) containing information about events in the data * A binary data file (.eeg) containing the voltage values of the EEG

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

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

sudo dnf -y install python3-pybv

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

sudo yum -y install python3-pybv

How To Uninstall python3-pybv on Fedora 36

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

sudo dnf remove python3-pybv

python3-pybv Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/pybv
/usr/lib/python3.10/site-packages/pybv-0.6.0.dist-info
/usr/lib/python3.10/site-packages/pybv-0.6.0.dist-info/INSTALLER
/usr/lib/python3.10/site-packages/pybv-0.6.0.dist-info/LICENSE
/usr/lib/python3.10/site-packages/pybv-0.6.0.dist-info/METADATA
/usr/lib/python3.10/site-packages/pybv-0.6.0.dist-info/WHEEL
/usr/lib/python3.10/site-packages/pybv-0.6.0.dist-info/top_level.txt
/usr/lib/python3.10/site-packages/pybv-0.6.0.dist-info/zip-safe
/usr/lib/python3.10/site-packages/pybv/__init__.py
/usr/lib/python3.10/site-packages/pybv/__pycache__
/usr/lib/python3.10/site-packages/pybv/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pybv/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/pybv/__pycache__/io.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pybv/__pycache__/io.cpython-310.pyc
/usr/lib/python3.10/site-packages/pybv/io.py
/usr/lib/python3.10/site-packages/pybv/tests
/usr/lib/python3.10/site-packages/pybv/tests/__pycache__
/usr/lib/python3.10/site-packages/pybv/tests/__pycache__/test_bv_writer.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pybv/tests/__pycache__/test_bv_writer.cpython-310.pyc
/usr/lib/python3.10/site-packages/pybv/tests/test_bv_writer.py
/usr/share/doc/python3-pybv
/usr/share/doc/python3-pybv/README.rst
/usr/share/licenses/python3-pybv
/usr/share/licenses/python3-pybv/LICENSE

References

Summary

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