How to Install and Uninstall python36-lazy Package on openSuSE Tumbleweed

Last updated: May 20,2024

1. Install "python36-lazy" package

This tutorial shows how to install python36-lazy on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python36-lazy

2. Uninstall "python36-lazy" package

Please follow the step by step instructions below to uninstall python36-lazy on openSuSE Tumbleweed:

$ sudo zypper remove python36-lazy

3. Information about the python36-lazy package on openSuSE Tumbleweed

Information for package python36-lazy:
--------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python36-lazy
Version : 1.4-2.2
Arch : noarch
Vendor : openSUSE
Installed Size : 72,3 KiB
Installed : No
Status : not installed
Source package : python-lazy-1.4-2.2.src
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.