How to Install and Uninstall python3-lazyarray.noarch Package on Fedora 39

Last updated: October 06,2024

1. Install "python3-lazyarray.noarch" package

Please follow the guidelines below to install python3-lazyarray.noarch on Fedora 39

$ sudo dnf update $ sudo dnf install python3-lazyarray.noarch

2. Uninstall "python3-lazyarray.noarch" package

In this section, we are going to explain the necessary steps to uninstall python3-lazyarray.noarch on Fedora 39:

$ sudo dnf remove python3-lazyarray.noarch $ sudo dnf autoremove

3. Information about the python3-lazyarray.noarch package on Fedora 39

Last metadata expiration check: 4:09:35 ago on Thu Mar 7 11:44:58 2024.
Available Packages
Name : python3-lazyarray
Version : 0.5.2
Release : 6.fc39
Architecture : noarch
Size : 31 k
Source : python-lazyarray-0.5.2-6.fc39.src.rpm
Repository : fedora
Summary : A lazily-evaluated numerical array class
URL : https://github.com/NeuralEnsemble/lazyarray
License : BSD
Description : 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: http://lazyarray.readthedocs.org