How To Install python3-lazyarray on Fedora 36

In this tutorial we learn how to install python3-lazyarray in Fedora 36. python3-lazyarray is A lazily-evaluated numerical array class

Introduction

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

What is python3-lazyarray

lazyarray is a Python package that provides a lazily-evaluated numerical array class, larray, based on and compatible with NumPy arrays. Lazy evaluation means that any operations on the array (potentially including array construction) are not performed immediately, but are delayed until evaluation is specifically requested. Evaluation of only parts of the array is also possible. Use of an larray can potentially save considerable computation time and memory in cases where • arrays are used conditionally (i.e. there are cases in which the array is never used) • only parts of an array are used (for example in distributed computation, in which each MPI node operates on a subset of the elements of the array) Documentation

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

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

sudo dnf -y install python3-lazyarray

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

sudo yum -y install python3-lazyarray

How To Uninstall python3-lazyarray on Fedora 36

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

sudo dnf remove python3-lazyarray

python3-lazyarray Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/__pycache__/lazyarray.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/__pycache__/lazyarray.cpython-310.pyc
/usr/lib/python3.10/site-packages/lazyarray-0.5.2.dist-info
/usr/lib/python3.10/site-packages/lazyarray-0.5.2.dist-info/INSTALLER
/usr/lib/python3.10/site-packages/lazyarray-0.5.2.dist-info/LICENSE
/usr/lib/python3.10/site-packages/lazyarray-0.5.2.dist-info/METADATA
/usr/lib/python3.10/site-packages/lazyarray-0.5.2.dist-info/WHEEL
/usr/lib/python3.10/site-packages/lazyarray-0.5.2.dist-info/top_level.txt
/usr/lib/python3.10/site-packages/lazyarray.py
/usr/share/doc/python3-lazyarray
/usr/share/doc/python3-lazyarray/README.rst
/usr/share/doc/python3-lazyarray/changelog.txt

References

Summary

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