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

Last updated: June 01,2024

1. Install "python3-lazy" package

This guide let you learn how to install python3-lazy on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-lazy

2. Uninstall "python3-lazy" package

This guide covers the steps necessary to uninstall python3-lazy on openSUSE Leap:

$ sudo zypper remove python3-lazy

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

Information for package python3-lazy:
-------------------------------------
Repository : Main Repository
Name : python3-lazy
Version : 1.4-bp155.2.11
Arch : noarch
Vendor : openSUSE
Installed Size : 73.2 KiB
Installed : No
Status : not installed
Source package : python-lazy-1.4-bp155.2.11.src
Upstream URL : https://github.com/stefanholek/lazy
Summary : Lazy attributes for Python objects
Description :
Lazy attributes are computed attributes that are evaluated only once,
the first time they are used. Subsequent uses return the results of
the first call. They come handy when code should run
* late, i.e. just before it is needed, and
* once, i.e. not twice, in the lifetime of an object.
You can think of it as deferred initialization. The possibilities are
endless.