How to Install and Uninstall python3-lazyarray Package on openSUSE Leap

Last updated: May 13,2024

1. Install "python3-lazyarray" package

In this section, we are going to explain the necessary steps to install python3-lazyarray on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-lazyarray

2. Uninstall "python3-lazyarray" package

Please follow the instructions below to uninstall python3-lazyarray on openSUSE Leap:

$ sudo zypper remove python3-lazyarray

3. Information about the python3-lazyarray package on openSUSE Leap

Information for package python3-lazyarray:
------------------------------------------
Repository : Main Repository
Name : python3-lazyarray
Version : 0.3.3-bp155.2.12
Arch : noarch
Vendor : openSUSE
Installed Size : 63.3 KiB
Installed : No
Status : not installed
Source package : python-lazyarray-0.3.3-bp155.2.12.src
Upstream URL : http://github.com/NeuralEnsemble/lazyarray/
Summary : Lazily-evaluated numerical array class, compatible with NumPy arrays
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)