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

Last updated: May 19,2024

1. Install "python3-eventlet" package

Please follow the step by step instructions below to install python3-eventlet on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-eventlet

2. Uninstall "python3-eventlet" package

Please follow the guidelines below to uninstall python3-eventlet on openSUSE Leap:

$ sudo zypper remove python3-eventlet

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

Information for package python3-eventlet:
-----------------------------------------
Repository : Main Repository
Name : python3-eventlet
Version : 0.26.1-1.25
Arch : noarch
Vendor : SUSE LLC
Installed Size : 1.7 MiB
Installed : No
Status : not installed
Source package : python-eventlet-0.26.1-1.25.src
Upstream URL : http://eventlet.net
Summary : Concurrent networking library for Python
Description :
Eventlet is a concurrent networking library for Python that allows
changing how code is run.
It uses epoll or libevent for scalable non-blocking I/O. Coroutines
ensure that the developer uses a blocking style of programming that is similar
to threading, but provide the benefits of non-blocking I/O. The event dispatch
is implicit, which means Eventlet can be used from the Python
interpreter, or as part of a larger application.